From a35dfff298def2081ffc9fd0bd776cbb3617de00 Mon Sep 17 00:00:00 2001 From: jaimejimenezortega Date: Tue, 26 Mar 2024 21:26:42 +0100 Subject: [PATCH] haciendo el comparador del backend --- .../Presupuestos/Cosidotapablanda.php | 35 +- .../PresupuestoDireccionesModel.php | 10 + .../Presupuestos/PresupuestoLineaModel.php | 20 +- ci4/app/Services/PresupuestoService.php | 134 +- .../_lineasPresupuestoItems.js | 4 +- xdebug.log | 74399 ++++++++++++++++ 6 files changed, 74564 insertions(+), 38 deletions(-) diff --git a/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php b/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php index b408edfd..4cf60040 100755 --- a/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php +++ b/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php @@ -346,8 +346,6 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController $this->viewData['papelGenericoRotativaNegroList'] = $this->getPapelGenericoRotativaNegro(); $this->viewData['papelGenericoRotativaColorList'] = $this->getPapelGenericoRotativaColor(); - $this->viewData['direccionesList'] = $this->getDirecciones($id); - // Acabados exteriores $this->viewData['acabadosCubierta'] = $this->getAcabadosCubierta(); $this->viewData['acabadosSobrecubierta'] = $this->getAcabadosSobrecubierta(); @@ -357,24 +355,23 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController if($cambios_lineas){ $this->viewData['presupuestoEntity']->cambios_lineas=true; } - // Tarifas + // Servicios + [$cambios_en_servicios, $servicios] = $this->getLineasServicios($presupuestoEntity); + $this->viewData['serviciosPreimpresion'] = $this->getServiciosPreimpresion(); $this->viewData['serviciosPreimpresion'] = $this->getServiciosPreimpresion(); $this->viewData['serviciosEncuadernacion'] = $this->getServiciosEncuadernacion(); $this->viewData['serviciosManipulado'] = $this->getServiciosManipulado(); $this->viewData['serviciosAcabado'] = $this->getServiciosAcabado(); - - [$cambios_en_servicios, $servicios] = $this->getLineasServicios($presupuestoEntity); - $this->viewData['serviciosEncuadernacionList'] = (new PresupuestoEncuadernacionesModel())->getResource($id)->get()->getResultObject(); - $this->viewData['serviciosAcabadosList'] = (new PresupuestoAcabadosModel())->getResource($id)->get()->getResultObject(); - $this->viewData['serviciosManipuladoList'] = (new PresupuestoManipuladosModel())->getResource($id)->get()->getResultObject(); - $this->viewData['serviciosPreimpresionList'] = (new PresupuestoPreimpresionesModel())->getResource($id)->get()->getResultObject(); + [$cambios_en_servicios, $servicios] = $this->getLineasServicios($presupuestoEntity); + $this->viewData['serviciosEncuadernacionList'] = $servicios->serviciosEncuadernacion; + $this->viewData['serviciosAcabadosList'] = $servicios->serviciosAcabado; + $this->viewData['serviciosManipuladoList'] = $servicios->serviciosManipulado; + $this->viewData['serviciosPreimpresionList'] = $servicios->serviciosPreimpresion; // Direciones presupuesto - $this->getLineasDirecciones($presupuestoEntity); - $this->viewData['presupuestoDirecciones'] = (new PresupuestoDireccionesModel())->getResource("", $id)->get()->getResultObject(); + [$cambios_en_direcciones, $this->viewData['direccionesList']] = $this->getLineasDirecciones($presupuestoEntity); - $this->viewData['POD'] = $this->getPOD(); $this->viewData['serviciosAutomaticos'] = [ @@ -1318,11 +1315,6 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController return $model->getPOD(); } - protected function getDirecciones($presupuesto_id){ - $model = model('App\Models\Presupuestos\PresupuestoDireccionesModel'); - return $model->where('presupuesto_id', $presupuesto_id)->findAll(); - } - protected function getLineasPresupuesto($presupuestoEntity){ $lineas = (new PresupuestoLineaModel())->getLineasPresupuesto($presupuestoEntity->id); @@ -1384,10 +1376,9 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController protected function getLineasDirecciones($presupuestoEntity){ - $direccionesEnvio = (new PresupuestoDireccionesModel())->getResource("", $presupuestoEntity->id)->get()->getResultObject(); - - $nuevasDirecciones = PresupuestoService::checkLineasEnvios($direccionesEnvio); - - return $direccionesEnvio; + $model = model('App\Models\Presupuestos\PresupuestoDireccionesModel'); + $direccionesEnvio = $model->where('presupuesto_id', $presupuestoEntity->id)->findAll(); + + return PresupuestoService::checkLineasEnvios($direccionesEnvio); } } diff --git a/ci4/app/Models/Presupuestos/PresupuestoDireccionesModel.php b/ci4/app/Models/Presupuestos/PresupuestoDireccionesModel.php index 398dc0fa..2788f78f 100755 --- a/ci4/app/Models/Presupuestos/PresupuestoDireccionesModel.php +++ b/ci4/app/Models/Presupuestos/PresupuestoDireccionesModel.php @@ -90,6 +90,16 @@ class PresupuestoDireccionesModel extends \App\Models\GoBaseModel ->groupEnd(); } + + public function updateLineaEnvio($lineaEnvio){ + + $lineaTemp = $lineaEnvio; + unset($lineaTemp->pais); + + $this->save($lineaTemp); + } + + /** * Get resource data for pdf generation. * diff --git a/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php b/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php index b00ea2de..ee1c4eb0 100755 --- a/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php +++ b/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php @@ -355,13 +355,6 @@ class PresupuestoLineaModel extends \App\Models\GoBaseModel "tarifa_impresion_id" => $new_linea['fields']['tarifa_impresion_id'], "rotativa_total_impresion" => $rot_total_impresion, "rotativa_a_favor_fibra" => $new_linea['fields']['a_favor_fibra'] ?? 0, - "rotativa_negro" => $new_linea['fields']['datosTipologias']->negro ?? 0, - "rotativa_cyan" => $new_linea['fields']['datosTipologias']->cyan ?? 0, - "rotativa_magenta" => $new_linea['fields']['datosTipologias']->magenta ?? 0, - "rotativa_amarillo" => $new_linea['fields']['datosTipologias']->amarillo ?? 0, - "rotativa_cg" => $new_linea['fields']['datosTipologias']->cg ?? 0, - "rotativa_gota_negro" => $new_linea['fields']['datosTipologias']->gota_negro ?? 0, - "rotativa_gota_color" => $new_linea['fields']['datosTipologias']->gota_color, "rotativa_mxm" => $new_linea['fields']['maquina_velocidad'] ?? 0, "rotativa_resolucion" => $new_linea['fields']['resolucion'] ?? 0, "rotativa_area_paginas" => $new_linea['fields']['superficie'] ?? 0, @@ -399,8 +392,19 @@ class PresupuestoLineaModel extends \App\Models\GoBaseModel "precio_impresion" => $new_linea['fields']['precio_impresion_horas'] ?? 0, "total_linea" => round($new_linea['fields']['total_impresion'], 2) ?? 0, "margen_impresion" => $new_linea['fields']['margen_impresion_horas'] ?? 0, - "margen_click_pedido" => $new_linea['fields']['margen_click_pedido'] ?? 0, ]; + + if(array_key_exists('datosTipologias', $new_linea['fields'])){ + $data += [ + "rotativa_negro" => $new_linea['fields']['datosTipologias']->negro ?? 0, + "rotativa_cyan" => $new_linea['fields']['datosTipologias']->cyan ?? 0, + "rotativa_magenta" => $new_linea['fields']['datosTipologias']->magenta ?? 0, + "rotativa_amarillo" => $new_linea['fields']['datosTipologias']->amarillo ?? 0, + "rotativa_cg" => $new_linea['fields']['datosTipologias']->cg ?? 0, + "rotativa_gota_negro" => $new_linea['fields']['datosTipologias']->gota_negro ?? 0, + "rotativa_gota_color" => $new_linea['fields']['datosTipologias']->gota_color + ]; + } $this->db ->table($this->table . " t1") ->where('id', $id_linea) diff --git a/ci4/app/Services/PresupuestoService.php b/ci4/app/Services/PresupuestoService.php index 755f7997..aaa38007 100755 --- a/ci4/app/Services/PresupuestoService.php +++ b/ci4/app/Services/PresupuestoService.php @@ -18,6 +18,7 @@ use App\Models\Presupuestos\PresupuestoAcabadosModel; use App\Models\Presupuestos\PresupuestoManipuladosModel; use App\Models\Presupuestos\PresupuestoEncuadernacionesModel; +use App\Models\Presupuestos\PresupuestoDireccionesModel; use App\Models\Tarifas\TarifaEnvioModel; @@ -230,6 +231,9 @@ class PresupuestoService extends BaseService // precio del pliego de impresion $linea['fields'] = PresupuestoService::getCostesLineaRotativa($maquina, $papel, $datosPedido, $parametrosRotativa); + if(count($linea['fields']) == 0){ + return []; + } [$precio_pliego_impresion, $margen_pliego_impresion] = PresupuestoService::getPrecioPliego($maquina, $papel, $datosPedido->paginas); @@ -461,6 +465,10 @@ class PresupuestoService extends BaseService $factor_altura = round($maquina->alto_impresion / ($data['alto'] + self::MARGEN_PAGINAS_ROTATIVA), 2); $factor_altura_click = round($maquina->alto_click / ($data['alto'] + self::MARGEN_PAGINAS_ROTATIVA), 2); + if(floor($factor_anchura) == 0){ + return []; + } + $multiplicador_pliego = $datosPedido->isCosido ? 4 : 2; $paginas_por_pliego = round(floor($factor_anchura) * $factor_altura * $multiplicador_pliego, 2); $pliegos_libro = round($paginas_por_pliego ? $datosPedido->paginas / $paginas_por_pliego : 0, 2); @@ -966,24 +974,39 @@ class PresupuestoService extends BaseService public static function checkLineasPresupuesto($input_data, $array_lineas) { $cambios = false; + + $lineas = []; + foreach ($array_lineas as $linea) { if (!PresupuestoService::checkMaquina($linea->maquina_id) || !PresupuestoService::checkPapelImpresion($linea->papel_impresion_id)) { - // Generar linea con comparador + + // Hay que ver si es rotativa o plana + if(str_contains($linea->tipo, '_rot_')){ + + } + else{ + + } } else{ $nueva_linea = PresupuestoService::obtenerValorLineaPresupuesto($input_data, $linea); if(count($nueva_linea) >0){ if(round($nueva_linea['fields']['total_impresion'],2) != $linea->total_linea){ (new PresupuestoLineaModel())->updatePreciosLineasPresupuesto($linea->id, $nueva_linea); + $linea_to_save = (new PresupuestoLineaModel())->find($linea->id); $cambios = true; + array_push($lineas, $linea_to_save); + } + else{ + array_push($lineas, $linea); } } } } - return [$cambios, $array_lineas]; + return [$cambios, $lineas]; } private static function obtenerValorLineaPresupuesto($input_data, $linea){ @@ -1108,7 +1131,7 @@ class PresupuestoService extends BaseService case 'lp_cubierta': case 'lp_sobrecubierta': - $data['uso'] = ($linea->tipo == 'lp cubierta')? 'cubierta':'sobrecubierta'; + $data['uso'] = ($linea->tipo == 'lp_cubierta')? 'cubierta':'sobrecubierta'; $data['tipo'] = 'colorhq'; $data['isColor'] = true; $data['datosPedido']->solapas = ($linea->tipo == 'lp cubierta')? $solapas : $solapas_sobrecubierta; @@ -1321,6 +1344,7 @@ class PresupuestoService extends BaseService if(count($envios)>0){ $model = new TarifaEnvioModel(); + foreach ($envios as $envio) { $paisId = $envio->pais_id; $cp= $envio->cp; @@ -1329,7 +1353,6 @@ class PresupuestoService extends BaseService $nueva_tarifa = $model->getTarifaEnvio($paisId, $cp, $peso, $tipo_envio); - //$nueva_tarifa = $model->getPrecioTarifa($envio->tarifa_envio_id, $input_data['tirada'], $input_data['POD']); if($nueva_tarifa && count($nueva_tarifa)>0){ $coste = 0; $margen = 0; @@ -1345,14 +1368,17 @@ class PresupuestoService extends BaseService $margen += $coste*floatval($nueva_tarifa[0]->margen)/100.0; if(round($coste, 2) != $envio->precio || - $margen != $envio->margen){ + $margen != $envio->margen || $nueva_tarifa[0]->id != $envio->tarifa_id){ $envio->precio = round($coste, 2); $envio->margen = $margen; $envio->tarifa_id = $nueva_tarifa[0]->id; $cambio = true; + + $presupuestoDirecciones = new PresupuestoDireccionesModel(); + $presupuestoDirecciones->updateLineaEnvio($envio); } - //$model->updateTarifas($input_data['presupuesto_id'], array($envio_temp)); + } } @@ -1362,6 +1388,102 @@ class PresupuestoService extends BaseService } + private static function obtenerLineasRotativa($input_data){ + + $uso = 'interior'; + + $tipo = $paginas->color > 0 ? 'color' : 'negro'; + + + $parametrosRotativa = (object)array( + 'a_favor_fibra' => $datosPedido->a_favor_fibra, + 'bnPages' => $paginas->negro, + 'colorPages' => $paginas->color, + 'rotativa_gota_negro' => 0, + 'rotativa_gota_color' => 0, + ); + + $opciones_papel = array( + 'rotativa' => 1, + ); + + $tipo = array(); + if ($paginas->color > 0) { + $tipo = 'color'; + $opciones_papel['color'] = 1; + } + else { + $opciones_papel['bn'] = 1; + $tipo = 'negro'; + } + + // Se obtienen los papeles disponibles + $papelimpresionmodel = new PapelImpresionModel(); + $papeles = $papelimpresionmodel->getIdPapelesImpresionForPresupuesto( + papel_generico_id: $papel_generico['id'], + gramaje: $gramaje, + options: $opciones_papel + ); + + $lineas = array(); + // Para cada papel, se obtienen las maquinas disponibles + foreach ($papeles as $papel) { + + $papelImpresionTipologiaModel = new \App\Models\Configuracion\PapelImpresionTipologiaModel(); + if (is_null($datosTipolog)) { + $datosTipologias = $papelImpresionTipologiaModel + ->findTipologiasForPapelImpresion($papel->id, $parametrosRotativa->colorPages > 0 ? 'color' : 'negro') + ->get()->getResultObject(); + + + if (count($datosTipologias) == 0) { + continue; + } + } else { + $datosTipologias = $datosTipolog; + } + + $parametrosRotativa->rotativa_gota_negro = $datosTipologias[0]->gota_negro; + $parametrosRotativa->rotativa_gota_color = $datosTipologias[0]->gota_color; + $parametrosRotativa->rotativa_negro = $datosTipologias[0]->negro; + $parametrosRotativa->rotativa_cyan = $datosTipologias[0]->cyan; + $parametrosRotativa->rotativa_magenta = $datosTipologias[0]->magenta; + $parametrosRotativa->rotativa_amarillo = $datosTipologias[0]->amarillo; + + $maquinamodel = new MaquinaModel(); + + $maquinas = $maquinamodel->getMaquinaImpresionForPresupuesto( + is_rotativa: 1, + tarifa_tipo: $tipo, + uso_tarifa: $uso, + tirada: $datosPedido->tirada + $datosPedido->merma, + papel_impresion_id: $papel->id, + ); + + // Se recorren las máquinas y se calcula el coste de linea por cada una + foreach ($maquinas as $maquina) { + + $data['uso'] = $uso; + $data['tipo'] = $tipo; + $data['datosPedido'] = $datosPedido; + $data['cliente_id'] = $cliente_id; + $data['papel'] = $papel; + $data['maquina'] = $maquina; + $data['papel_generico'] = $papel_generico; + $data['parametrosRotativa'] = $parametrosRotativa; + $data['paginas'] = $paginas; + $data['gramaje'] = $gramaje; + + $linea = PresupuestoService::getLineaPresupuestoRotativa($data); + + if(empty($linea)) + continue; + + array_push($lineas, $linea); + } + } + return $lineas; + } // Funcion que comprueba si existe una maquina diff --git a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_lineasPresupuestoItems.js b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_lineasPresupuestoItems.js index adadad68..8226a9d6 100644 --- a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_lineasPresupuestoItems.js +++ b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_lineasPresupuestoItems.js @@ -2977,7 +2977,7 @@ function clear_lp_rot_bn(clear_selectors){ $(".lp-rot-bn-input" ).val("0") $("#lp_rot_bn_paginas" ).val(pags) if(clear_selectors) - $( ".lp-rotbn-select").empty() + $( ".lp-rot-bn-select").empty() } @@ -3324,7 +3324,7 @@ function clear_lp_rot_color(clear_selectors){ $(".lp-rot-color-input" ).val("0") $("#lp_rot_color_paginas" ).val(pags) if(clear_selectors) - $( ".lp-rotcolor-select").empty() + $( ".lp-rot-color-select").empty() } diff --git a/xdebug.log b/xdebug.log index c96ef17b..333ced7d 100644 --- a/xdebug.log +++ b/xdebug.log @@ -4905,3 +4905,74402 @@ [22] Log closed at 2024-03-19 22:15:33.415635 +[22] Log opened at 2024-03-26 17:17:12.690029 +[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/Cosidotapablanda.php -n 1325 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 15 +[22] [Step Debug] -> + +[22] Log closed at 2024-03-26 17:17:13.175935 + +[22] Log opened at 2024-03-26 17:17:13.206978 +[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/Cosidotapablanda.php -n 1325 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 15 +[22] [Step Debug] -> + +[22] Log closed at 2024-03-26 17:17:13.657698 + +[22] Log opened at 2024-03-26 17:17:13.883568 +[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/Cosidotapablanda.php -n 1325 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 15 +[22] [Step Debug] -> + +[22] Log closed at 2024-03-26 17:17:14.039020 + +[27] Log opened at 2024-03-26 17:17:14.420677 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 15 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:17:14.709853 + +[27] Log opened at 2024-03-26 17:17:15.410090 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 15 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:17:15.866482 + +[27] Log opened at 2024-03-26 17:17:15.880901 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 15 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:17:16.401972 + +[27] Log opened at 2024-03-26 17:17:16.553946 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 15 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:17:16.728746 + +[27] Log opened at 2024-03-26 17:17:16.731291 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[24] Log opened at 2024-03-26 17:17:16.731396 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[26] Log opened at 2024-03-26 17:17:16.731427 +[25] Log opened at 2024-03-26 17:17:16.731453 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [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. +[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'. +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[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. +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[24] [Step Debug] -> + +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[25] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] -> + +[25] [Step Debug] -> + +[28] Log opened at 2024-03-26 17:17:16.733603 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] -> + +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [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] -> + +[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] -> + +[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] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[27] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[26] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[25] [Step Debug] -> + +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[26] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[25] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[27] [Step Debug] <- run -i 15 +[24] [Step Debug] <- run -i 15 +[26] [Step Debug] <- run -i 15 +[25] [Step Debug] <- run -i 15 +[28] [Step Debug] <- run -i 15 +[22] Log opened at 2024-03-26 17:17:16.949956 +[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] <- run -i 5 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[22] [Step Debug] -> + +[22] Log closed at 2024-03-26 17:17:17.253306 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:17:17.304057 + +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 17:17:17.347315 + +[25] Log opened at 2024-03-26 17:17:17.363771 +[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] -> + +[28] Log opened at 2024-03-26 17:17:17.369084 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:17:17.378537 + +[27] Log opened at 2024-03-26 17:17:17.396040 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 17:17:17.402466 + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[25] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[27] [Step Debug] -> + +[24] Log opened at 2024-03-26 17:17:17.419932 +[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] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[25] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[26] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[28] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 18 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 19 -n max_data -v 8192 +[24] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:17:17.441740 + +[24] [Step Debug] <- feature_set -i 20 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 21 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[26] Log opened at 2024-03-26 17:17:17.454092 +[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] -> + +[25] [Step Debug] <- run -i 15 +[28] [Step Debug] <- run -i 15 +[27] [Step Debug] <- run -i 15 +[24] [Step Debug] <- run -i 22 +[26] [Step Debug] <- run -i 5 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:17:17.950532 + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:17:18.046475 + +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 17:17:18.144377 + +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 17:17:18.264556 + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:17:18.363612 + +[31] Log opened at 2024-03-26 17:17:31.444160 +[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/Cosidotapablanda.php -n 1325 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 15 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:17:31.989795 + +[31] Log opened at 2024-03-26 17:17:32.205154 +[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/Cosidotapablanda.php -n 1325 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 15 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:17:32.368451 + +[26] Log opened at 2024-03-26 17:17:32.711238 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 15 +[33] Log opened at 2024-03-26 17:17:32.950062 +[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/Cosidotapablanda.php -n 1325 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:17:32.965360 + +[33] [Step Debug] <- run -i 15 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:17:33.337367 + +[33] Log opened at 2024-03-26 17:17:38.328525 +[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/Cosidotapablanda.php -n 1325 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 976 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 977 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 978 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 15 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 16 +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 17 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 18 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 20 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_remove -i 22 -d 330012 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_remove -i 23 -d 330013 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_remove -i 24 -d 330014 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 25 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:17:54.609507 + +[33] Log opened at 2024-03-26 17:17:54.780559 +[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] -> + +[24] Log opened at 2024-03-26 17:17:54.785452 +[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] -> + +[25] Log opened at 2024-03-26 17:17:54.787475 +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[33] [Step Debug] -> + +[27] Log opened at 2024-03-26 17:17:54.787587 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[24] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[24] [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. +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[25] [Step Debug] -> + +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[34] Log opened at 2024-03-26 17:17:54.789356 +[30] Log opened at 2024-03-26 17:17:54.789269 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[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'. +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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] -> + +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[30] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[24] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[24] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[25] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[30] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[34] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[30] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[25] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[27] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[25] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[27] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[30] [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] -> + +[25] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[30] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[34] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[30] [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] -> + +[30] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[25] [Step Debug] -> + +[27] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[30] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[34] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[24] [Step Debug] <- run -i 12 +[25] [Step Debug] <- run -i 12 +[27] [Step Debug] <- run -i 12 +[30] [Step Debug] <- run -i 12 +[34] [Step Debug] <- run -i 12 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:17:54.986565 + +[33] Log opened at 2024-03-26 17:17:54.989650 +[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] <- run -i 5 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 17:17:55.301004 + +[24] Log opened at 2024-03-26 17:17:55.302949 +[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] -> + +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 17:17:55.329615 + +[25] Log opened at 2024-03-26 17:17:55.331693 +[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] -> + +[24] [Step Debug] <- run -i 5 +[25] [Step Debug] <- run -i 5 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 17:17:55.367495 + +[34] Log opened at 2024-03-26 17:17:55.369649 +[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] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:17:55.391676 + +[33] Log opened at 2024-03-26 17:17:55.393617 +[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] -> + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:17:55.422190 + +[33] [Step Debug] <- run -i 5 +[34] [Step Debug] <- run -i 5 +[30] [Step Debug] -> + +[30] Log closed at 2024-03-26 17:17:55.464685 + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 17:17:55.608826 + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 17:17:55.636780 + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 17:17:55.688234 + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:17:55.730068 + +[33] Log opened at 2024-03-26 17:17:55.906270 +[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/Cosidotapablanda.php -n 1325 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[27] Log opened at 2024-03-26 17:17:56.036536 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[27] [Step Debug] -> + +[34] Log opened at 2024-03-26 17:17:56.055560 +[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] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [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] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[27] [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] -> + +[34] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[27] [Step Debug] <- run -i 12 +[34] [Step Debug] <- run -i 10 +[24] Log opened at 2024-03-26 17:17:56.215514 +[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] -> + +[30] Log opened at 2024-03-26 17:17:56.217100 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[30] [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] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[24] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[30] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:17:56.273922 + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[24] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[30] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[30] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[24] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[30] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[30] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[30] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:17:56.413803 + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 17:17:56.474115 + +[28] Log opened at 2024-03-26 17:18:02.210716 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[24] [Step Debug] <- run -i 15 +[30] [Step Debug] <- run -i 15 +[28] [Step Debug] <- run -i 12 +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] Log closed at 2024-03-26 17:18:02.569171 + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 17:18:02.651901 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:18:02.799786 + +[24] Log opened at 2024-03-26 17:18:02.938202 +[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/Cosidotapablanda.php -n 1325 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 17:18:03.108890 + +[24] Log opened at 2024-03-26 17:18:03.439961 +[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/Cosidotapablanda.php -n 1325 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[30] Log opened at 2024-03-26 17:18:03.653761 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 17:18:03.756714 + +[30] [Step Debug] <- run -i 12 +[30] [Step Debug] -> + +[30] Log closed at 2024-03-26 17:18:04.056844 + +[31] Log opened at 2024-03-26 17:18:14.605619 +[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/Cosidotapablanda.php -n 1325 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 12 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:18:15.383552 + +[31] Log opened at 2024-03-26 17:18:15.580845 +[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/Cosidotapablanda.php -n 1325 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 12 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:18:15.735815 + +[26] Log opened at 2024-03-26 17:18:16.006320 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 12 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:18:16.312135 + +[26] Log opened at 2024-03-26 17:18:16.336340 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[31] Log opened at 2024-03-26 17:18:16.358488 +[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] -> + +[26] [Step Debug] <- run -i 12 +[31] [Step Debug] <- run -i 5 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:18:16.692594 + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:18:16.736986 + +[33] Log opened at 2024-03-26 17:18:43.053167 +[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/Cosidotapablanda.php -n 1325 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:18:43.452788 + +[33] Log opened at 2024-03-26 17:18:44.196873 +[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/Cosidotapablanda.php -n 1325 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:18:44.595286 + +[34] Log opened at 2024-03-26 17:19:17.355427 +[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/Cosidotapablanda.php -n 1325 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 12 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 17:19:17.760253 + +[34] Log opened at 2024-03-26 17:19:17.849700 +[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/Cosidotapablanda.php -n 1325 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 12 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 17:19:18.256714 + +[32] Log opened at 2024-03-26 17:19:25.413815 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 12 +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 13 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 17 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_value -i 19 -d 0 -c 0 -n "$envio->pais" -m 7 +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 20 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:19:49.368625 + +[24] Log opened at 2024-03-26 17:19:49.570168 +[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/Cosidotapablanda.php -n 1325 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 17:19:49.929261 + +[30] Log opened at 2024-03-26 17:20:19.380741 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 12 +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 13 +[30] [Step Debug] -> + +[30] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[30] [Step Debug] -> + +[30] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[30] [Step Debug] -> + +[30] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 17 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_value -i 19 -d 0 -c 0 -n "$envio->pais" -m 7 +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 20 +[30] [Step Debug] -> + +[30] Log closed at 2024-03-26 17:20:53.378429 + +[26] Log opened at 2024-03-26 17:21:45.406372 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 12 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- stack_get -i 13 +[26] [Step Debug] -> + +[26] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[26] [Step Debug] -> + +[26] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[26] [Step Debug] -> + +[26] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[26] [Step Debug] -> + +[26] [Step Debug] <- context_names -i 17 -d 0 +[26] [Step Debug] -> + +[26] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 19 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:21:49.513865 + +[25] Log opened at 2024-03-26 17:21:49.732557 +[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] Log opened at 2024-03-26 17:21:49.737972 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[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. +[25] [Step Debug] -> + +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] -> + +[33] Log opened at 2024-03-26 17:21:49.738570 +[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] -> + +[27] Log opened at 2024-03-26 17:21:49.739400 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] Log opened at 2024-03-26 17:21:49.739912 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[27] [Step Debug] -> + +[28] Log opened at 2024-03-26 17:21:49.740345 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[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. +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[25] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[26] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[33] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[26] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[33] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[27] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[26] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[33] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[27] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[27] [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] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[25] [Step Debug] <- run -i 12 +[26] [Step Debug] <- run -i 11 +[33] [Step Debug] <- run -i 11 +[27] [Step Debug] <- run -i 11 +[34] [Step Debug] <- run -i 5 +[28] [Step Debug] <- run -i 5 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 17:21:49.919571 + +[25] Log opened at 2024-03-26 17:21:49.922012 +[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] -> + +[25] [Step Debug] <- run -i 5 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 17:21:50.125044 + +[34] Log opened at 2024-03-26 17:21:50.126820 +[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] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:21:50.192284 + +[33] Log opened at 2024-03-26 17:21:50.194638 +[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] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[34] [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] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[34] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[33] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[33] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[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] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[33] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:21:50.232471 + +[28] Log opened at 2024-03-26 17:21:50.234438 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:21:50.271649 + +[27] Log opened at 2024-03-26 17:21:50.275284 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 17:21:50.307771 + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[27] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[28] [Step Debug] -> + +[27] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[28] [Step Debug] -> + +[27] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:21:50.397209 + +[30] Log opened at 2024-03-26 17:22:26.146751 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[30] [Step Debug] -> + +[31] Log opened at 2024-03-26 17:22:26.160069 +[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] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[30] [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] -> + +[34] [Step Debug] <- run -i 12 +[33] [Step Debug] <- run -i 12 +[28] [Step Debug] <- run -i 15 +[27] [Step Debug] <- run -i 15 +[30] [Step Debug] <- run -i 12 +[31] [Step Debug] <- run -i 5 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:22:26.537833 + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:22:26.589356 + +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] Log closed at 2024-03-26 17:22:27.682565 + +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 17:22:27.707552 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:22:27.753237 + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:22:27.785146 + +[31] Log opened at 2024-03-26 17:22:27.895132 +[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] -> + +[30] Log opened at 2024-03-26 17:22:27.900590 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[30] [Step Debug] -> + +[25] Log opened at 2024-03-26 17:22:27.902234 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[31] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[26] Log opened at 2024-03-26 17:22:27.902498 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[30] [Step Debug] -> + +[35] Log opened at 2024-03-26 17:22:27.902239 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[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. +[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'. +[25] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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. +[25] [Step Debug] -> + +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] -> + +[32] Log opened at 2024-03-26 17:22:27.902756 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[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. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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. +[35] [Step Debug] -> + +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[30] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[30] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[25] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[26] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[35] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[32] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[30] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[35] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[25] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[26] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[35] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[32] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[25] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[26] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[35] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[32] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[26] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[35] [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] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[25] [Step Debug] -> + +[26] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[35] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[32] [Step Debug] -> + +[31] [Step Debug] <- run -i 12 +[30] [Step Debug] <- run -i 12 +[25] [Step Debug] <- run -i 12 +[26] [Step Debug] <- run -i 12 +[35] [Step Debug] <- run -i 12 +[32] [Step Debug] <- run -i 12 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:22:28.110463 + +[31] Log opened at 2024-03-26 17:22:28.113471 +[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] <- run -i 5 +[35] [Step Debug] -> + +[35] Log closed at 2024-03-26 17:22:28.397106 + +[35] Log opened at 2024-03-26 17:22:28.405128 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:22:28.439748 + +[32] Log opened at 2024-03-26 17:22:28.442154 +[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] -> + +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 17:22:28.480370 + +[25] Log opened at 2024-03-26 17:22:28.482902 +[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] -> + +[35] [Step Debug] <- run -i 5 +[32] [Step Debug] <- run -i 5 +[25] [Step Debug] <- run -i 5 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:22:28.517791 + +[26] Log opened at 2024-03-26 17:22:28.520219 +[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] -> + +[30] [Step Debug] -> + +[30] Log closed at 2024-03-26 17:22:28.587766 + +[26] [Step Debug] <- run -i 5 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:22:28.619978 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:22:28.728106 + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 17:22:28.762863 + +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[35] [Step Debug] -> + +[35] Log closed at 2024-03-26 17:22:28.805189 + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:22:28.899306 + +[31] Log opened at 2024-03-26 17:22:28.939672 +[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/Cosidotapablanda.php -n 1325 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 12 +[32] Log opened at 2024-03-26 17:22:29.066384 +[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] -> + +[35] Log opened at 2024-03-26 17:22:29.081842 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[32] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[35] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[32] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[35] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[35] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[26] Log opened at 2024-03-26 17:22:29.213968 +[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] -> + +[25] Log opened at 2024-03-26 17:22:29.216348 +[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] -> + +[32] [Step Debug] <- run -i 12 +[35] [Step Debug] <- run -i 12 +[26] [Step Debug] <- run -i 5 +[25] [Step Debug] <- run -i 5 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:22:29.343497 + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 17:22:29.522041 + +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:22:29.585333 + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1325 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:22:29.638373 + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] Log closed at 2024-03-26 17:22:29.699336 + +[27] Log opened at 2024-03-26 17:32:53.303207 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 12 +[27] [Step Debug] -> + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:32:54.744229 + +[27] Log opened at 2024-03-26 17:32:54.980337 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[34] Log opened at 2024-03-26 17:32:54.981902 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] Log opened at 2024-03-26 17:32:54.982233 +[27] [Step Debug] -> + +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[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] -> + +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[33] Log opened at 2024-03-26 17:32:54.982743 +[28] [Step Debug] -> + +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[30] Log opened at 2024-03-26 17:32:54.982949 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] Log opened at 2024-03-26 17:32:54.983056 +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[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). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] -> + +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[30] [Step Debug] -> + +[31] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[31] [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] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[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] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[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] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[34] [Step Debug] -> + +[28] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[30] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[34] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[28] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[30] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[30] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[34] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[28] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[30] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[34] [Step Debug] <- run -i 13 +[28] [Step Debug] <- run -i 13 +[33] [Step Debug] <- run -i 13 +[30] [Step Debug] <- run -i 13 +[31] [Step Debug] <- run -i 13 +[27] [Step Debug] <- run -i 13 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:32:55.481291 + +[31] Log opened at 2024-03-26 17:32:55.483164 +[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] -> + +[30] [Step Debug] -> + +[30] Log closed at 2024-03-26 17:32:55.514516 + +[30] Log opened at 2024-03-26 17:32:55.516379 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[31] [Step Debug] <- run -i 5 +[30] [Step Debug] <- run -i 5 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:32:55.541244 + +[33] Log opened at 2024-03-26 17:32:55.543153 +[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/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:32:55.573343 + +[28] Log opened at 2024-03-26 17:32:55.575091 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:32:55.639959 + +[27] Log opened at 2024-03-26 17:32:55.641912 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 17:32:55.669964 + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:32:55.749980 + +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[30] [Step Debug] -> + +[30] Log closed at 2024-03-26 17:32:55.775357 + +[25] Log opened at 2024-03-26 17:33:08.636764 +[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] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[28] [Step Debug] <- run -i 12 +[27] [Step Debug] <- run -i 12 +[25] [Step Debug] <- run -i 12 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:33:08.817421 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:33:09.026513 + +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 17:33:09.098180 + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:33:09.137006 + +[33] Log opened at 2024-03-26 17:33:09.163035 +[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/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:33:09.531910 + +[33] Log opened at 2024-03-26 17:33:09.582115 +[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/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[28] Log opened at 2024-03-26 17:33:09.736069 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[27] Log opened at 2024-03-26 17:33:09.773183 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[28] [Step Debug] <- run -i 12 +[27] [Step Debug] <- run -i 5 +[25] Log opened at 2024-03-26 17:33:09.949553 +[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] -> + +[32] Log opened at 2024-03-26 17:33:09.953275 +[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] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[25] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[25] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[32] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:33:10.005073 + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:33:10.113890 + +[28] [Step Debug] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:33:10.188808 + +[33] Log opened at 2024-03-26 17:33:12.402098 +[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/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[25] [Step Debug] <- run -i 12 +[32] [Step Debug] <- run -i 12 +[33] [Step Debug] <- run -i 12 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 13 +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 17 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 19 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:33:17.112945 + +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:33:17.178349 + +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 17:33:17.244347 + +[33] Log opened at 2024-03-26 17:33:17.335685 +[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/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[35] Log opened at 2024-03-26 17:33:17.344637 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[26] Log opened at 2024-03-26 17:33:17.344695 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] -> + +[35] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[34] Log opened at 2024-03-26 17:33:17.346013 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] -> + +[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 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[31] Log opened at 2024-03-26 17:33:17.346528 +[33] [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'. +[36] Log opened at 2024-03-26 17:33:17.346505 +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[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] -> + +[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] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[33] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[35] [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] -> + +[34] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[34] [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] <- 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] -> + +[26] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[26] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[35] [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] -> + +[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] -> + +[26] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[26] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[35] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[34] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[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] -> + +[26] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[26] [Step Debug] <- run -i 8 +[35] [Step Debug] <- run -i 8 +[34] [Step Debug] <- run -i 8 +[31] [Step Debug] <- run -i 8 +[36] [Step Debug] <- run -i 8 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:33:17.515954 + +[33] Log opened at 2024-03-26 17:33:17.518825 +[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/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:33:17.746481 + +[31] Log opened at 2024-03-26 17:33:17.749111 +[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/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[35] [Step Debug] -> + +[35] Log closed at 2024-03-26 17:33:17.775631 + +[35] Log opened at 2024-03-26 17:33:17.777966 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[35] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 17:33:17.808913 + +[34] Log opened at 2024-03-26 17:33:17.811195 +[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] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[35] [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] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[35] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[35] [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] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[34] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:33:17.895446 + +[26] Log opened at 2024-03-26 17:33:17.897291 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[26] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-26 17:33:17.935892 + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[30] Log opened at 2024-03-26 17:33:55.319455 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[27] Log opened at 2024-03-26 17:33:55.322093 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[30] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[30] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[30] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[31] [Step Debug] <- run -i 12 +[35] [Step Debug] <- run -i 12 +[34] [Step Debug] <- run -i 12 +[26] [Step Debug] <- run -i 12 +[30] [Step Debug] <- run -i 12 +[27] [Step Debug] <- run -i 12 +[35] [Step Debug] -> + +[35] Log closed at 2024-03-26 17:33:55.688787 + +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:33:55.720500 + +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 17:33:55.750148 + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:33:55.774104 + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:33:55.784013 + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:33:55.831737 + +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] Log closed at 2024-03-26 17:33:56.992678 + +[27] Log opened at 2024-03-26 17:33:57.248371 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[30] Log opened at 2024-03-26 17:33:57.253170 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[30] [Step Debug] -> + +[28] Log opened at 2024-03-26 17:33:57.254075 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] Log opened at 2024-03-26 17:33:57.254604 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[36] Log opened at 2024-03-26 17:33:57.255188 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[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. +[27] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[30] [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. +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Step Debug] -> + +[25] Log opened at 2024-03-26 17:33:57.254977 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [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. +[30] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[30] [Step Debug] -> + +[25] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[25] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[30] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[32] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[36] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[25] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[30] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[32] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[36] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[25] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[32] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[36] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[25] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[36] [Step Debug] -> + +[25] [Step Debug] -> + +[27] [Step Debug] <- run -i 12 +[30] [Step Debug] <- run -i 12 +[28] [Step Debug] <- run -i 12 +[32] [Step Debug] <- run -i 12 +[36] [Step Debug] <- run -i 12 +[25] [Step Debug] <- run -i 12 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:33:57.438609 + +[27] Log opened at 2024-03-26 17:33:57.445217 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 5 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-26 17:33:57.719677 + +[36] Log opened at 2024-03-26 17:33:57.721857 +[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] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:33:57.745217 + +[32] Log opened at 2024-03-26 17:33:57.747258 +[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] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:33:57.774316 + +[28] Log opened at 2024-03-26 17:33:57.776167 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[36] [Step Debug] <- run -i 5 +[32] [Step Debug] <- run -i 5 +[28] [Step Debug] <- run -i 5 +[30] [Step Debug] -> + +[30] Log closed at 2024-03-26 17:33:57.869647 + +[30] Log opened at 2024-03-26 17:33:57.872340 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 5 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 17:33:57.909532 + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:33:57.945760 + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-26 17:33:58.078461 + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:33:58.125554 + +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[30] [Step Debug] -> + +[30] Log closed at 2024-03-26 17:33:58.154102 + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:33:58.193858 + +[27] Log opened at 2024-03-26 17:33:58.421829 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 12 +[36] Log opened at 2024-03-26 17:33:58.493998 +[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] -> + +[25] Log opened at 2024-03-26 17:33:58.510628 +[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] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[36] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[25] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[36] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[25] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[25] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[36] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[36] [Step Debug] <- run -i 14 +[25] [Step Debug] <- run -i 14 +[32] Log opened at 2024-03-26 17:33:58.687216 +[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] -> + +[28] Log opened at 2024-03-26 17:33:58.690688 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 12 +[32] [Step Debug] <- run -i 12 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:33:58.793819 + +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 17:33:58.986369 + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] Log closed at 2024-03-26 17:33:59.049491 + +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:33:59.106695 + +[28] [Step Debug] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:33:59.171321 + +[31] Log opened at 2024-03-26 17:34:08.810103 +[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/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 12 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:34:09.209615 + +[31] Log opened at 2024-03-26 17:34:09.249117 +[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/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 12 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:34:09.619729 + +[31] Log opened at 2024-03-26 17:34:13.225740 +[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/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 12 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 13 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 17 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 19 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:34:17.003138 + +[31] Log opened at 2024-03-26 17:34:17.204384 +[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] -> + +[26] Log opened at 2024-03-26 17:34:17.209457 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[34] Log opened at 2024-03-26 17:34:17.209470 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[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. +[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. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] -> + +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[33] Log opened at 2024-03-26 17:34:17.210336 +[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. +[30] Log opened at 2024-03-26 17:34:17.210781 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[33] [Step Debug] -> + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[30] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[27] Log opened at 2024-03-26 17:34:17.211306 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[27] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[26] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[34] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[30] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [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] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[30] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[27] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[33] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[30] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[27] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[26] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[34] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[30] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[30] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[30] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[30] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[31] [Step Debug] <- run -i 12 +[26] [Step Debug] <- run -i 12 +[34] [Step Debug] <- run -i 12 +[33] [Step Debug] <- run -i 12 +[30] [Step Debug] <- run -i 12 +[27] [Step Debug] <- run -i 12 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:34:17.389264 + +[31] Log opened at 2024-03-26 17:34:17.392543 +[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] <- run -i 5 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 17:34:17.686579 + +[34] Log opened at 2024-03-26 17:34:17.688933 +[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] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:34:17.724113 + +[26] Log opened at 2024-03-26 17:34:17.726272 +[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] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:34:17.756103 + +[33] Log opened at 2024-03-26 17:34:17.759213 +[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] <- run -i 5 +[26] [Step Debug] <- run -i 5 +[33] [Step Debug] <- run -i 5 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:34:17.798509 + +[27] Log opened at 2024-03-26 17:34:17.801236 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[30] [Step Debug] -> + +[30] Log closed at 2024-03-26 17:34:17.833581 + +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:34:17.872925 + +[27] [Step Debug] <- run -i 5 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:34:18.075233 + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:34:18.103390 + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 17:34:18.138040 + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:34:18.202977 + +[27] Log opened at 2024-03-26 17:34:18.316359 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 12 +[30] Log opened at 2024-03-26 17:34:18.516517 +[34] Log opened at 2024-03-26 17:34:18.516548 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[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'. +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [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). +[30] [Step Debug] -> + +[34] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[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] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[30] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[34] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[30] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[34] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[30] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[30] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[34] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[30] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[30] [Step Debug] <- run -i 15 +[34] [Step Debug] <- run -i 15 +[33] Log opened at 2024-03-26 17:34:18.664211 +[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] -> + +[26] Log opened at 2024-03-26 17:34:18.671263 +[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] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[26] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[26] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[26] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:34:18.752239 + +[33] [Step Debug] <- run -i 15 +[26] [Step Debug] <- run -i 15 +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 17:34:18.963406 + +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] Log closed at 2024-03-26 17:34:19.047346 + +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:34:19.111585 + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:34:19.167153 + +[36] Log opened at 2024-03-26 17:35:11.405477 +[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/Cosidotapablanda.php -n 1324 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 12 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-26 17:35:11.822830 + +[36] Log opened at 2024-03-26 17:35:11.887436 +[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/Cosidotapablanda.php -n 1324 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 12 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-26 17:35:12.288000 + +[36] Log opened at 2024-03-26 17:35:16.350099 +[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/Cosidotapablanda.php -n 1324 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 12 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 13 +[36] [Step Debug] -> + +[36] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[36] [Step Debug] -> + +[36] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[36] [Step Debug] -> + +[36] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 17 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 19 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-26 17:35:20.425814 + +[36] Log opened at 2024-03-26 17:35:20.635680 +[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] -> + +[28] Log opened at 2024-03-26 17:35:20.640250 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[32] Log opened at 2024-03-26 17:35:20.640252 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Step Debug] -> + +[31] Log opened at 2024-03-26 17:35:20.641753 +[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] -> + +[27] Log opened at 2024-03-26 17:35:20.642329 +[38] Log opened at 2024-03-26 17:35:20.642006 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [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] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[36] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[32] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[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] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[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] -> + +[28] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[36] [Step Debug] -> + +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[32] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[27] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[36] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[31] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] -> + +[27] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[36] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[36] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[32] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[31] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[31] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[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] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[38] [Step Debug] -> + +[36] [Step Debug] <- run -i 12 +[28] [Step Debug] <- run -i 12 +[31] [Step Debug] <- run -i 12 +[27] [Step Debug] <- run -i 12 +[38] [Step Debug] <- run -i 12 +[32] [Step Debug] <- run -i 12 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-26 17:35:20.837109 + +[36] Log opened at 2024-03-26 17:35:20.840535 +[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 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:35:21.069523 + +[31] Log opened at 2024-03-26 17:35:21.071200 +[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] -> + +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:35:21.108746 + +[38] Log opened at 2024-03-26 17:35:21.111630 +[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] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:35:21.148017 + +[28] Log opened at 2024-03-26 17:35:21.150078 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[31] [Step Debug] <- run -i 5 +[38] [Step Debug] <- run -i 5 +[28] [Step Debug] <- run -i 5 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:35:21.221069 + +[32] Log opened at 2024-03-26 17:35:21.223684 +[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] -> + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:35:21.259675 + +[32] [Step Debug] <- run -i 5 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-26 17:35:21.287172 + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:35:21.439240 + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:35:21.524702 + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:35:21.554772 + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:35:21.642004 + +[27] Log opened at 2024-03-26 17:35:21.841252 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 12 +[31] Log opened at 2024-03-26 17:35:22.052710 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[38] Log opened at 2024-03-26 17:35:22.052940 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[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. +[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'. +[31] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] -> + +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[38] [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] -> + +[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] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[38] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[31] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[38] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[32] Log opened at 2024-03-26 17:35:22.104167 +[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] -> + +[28] Log opened at 2024-03-26 17:35:22.106260 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] -> + +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[31] [Step Debug] <- run -i 12 +[38] [Step Debug] <- run -i 12 +[32] [Step Debug] <- run -i 5 +[28] [Step Debug] <- run -i 5 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:35:22.189721 + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:35:22.487449 + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:35:22.543228 + +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:35:22.603786 + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:35:22.680203 + +[33] Log opened at 2024-03-26 17:39:08.153049 +[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/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:39:08.581629 + +[33] Log opened at 2024-03-26 17:39:08.637181 +[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/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:39:09.022153 + +[33] Log opened at 2024-03-26 17:39:11.386046 +[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/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1358 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 13 +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 17 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_remove -i 19 -d 330140 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 20 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:39:17.396414 + +[33] Log opened at 2024-03-26 17:39:17.692995 +[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. +[36] Log opened at 2024-03-26 17:39:17.693748 +[39] Log opened at 2024-03-26 17:39:17.693540 +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[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. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] -> + +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[39] [Step Debug] -> + +[27] Log opened at 2024-03-26 17:39:17.694899 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] Log opened at 2024-03-26 17:39:17.694904 +[27] [Step Debug] -> + +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[32] Log opened at 2024-03-26 17:39:17.695107 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[32] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [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] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[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] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[36] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[39] [Step Debug] -> + +[32] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[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] -> + +[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] -> + +[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] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [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] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[39] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[39] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[39] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[39] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[39] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[33] [Step Debug] <- run -i 21 +[36] [Step Debug] <- run -i 21 +[39] [Step Debug] <- run -i 21 +[27] [Step Debug] <- run -i 21 +[28] [Step Debug] <- run -i 21 +[32] [Step Debug] <- run -i 21 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:39:18.219154 + +[32] Log opened at 2024-03-26 17:39:18.221571 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:39:18.258796 + +[27] Log opened at 2024-03-26 17:39:18.261325 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[32] [Step Debug] <- run -i 11 +[27] [Step Debug] <- run -i 5 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:39:18.309334 + +[28] Log opened at 2024-03-26 17:39:18.311939 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:39:18.347827 + +[33] Log opened at 2024-03-26 17:39:18.350863 +[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] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[33] [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] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[28] [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] -> + +[36] [Step Debug] -> + +[36] Log closed at 2024-03-26 17:39:18.380662 + +[36] Log opened at 2024-03-26 17:39:18.382450 +[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/Cosidotapablanda.php -n 1324 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[39] [Step Debug] -> + +[39] Log closed at 2024-03-26 17:39:18.486128 + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:39:18.541569 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:39:18.570259 + +[31] Log opened at 2024-03-26 17:39:44.839283 +[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/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[28] [Step Debug] <- run -i 11 +[33] [Step Debug] <- run -i 11 +[36] [Step Debug] <- run -i 11 +[31] [Step Debug] <- run -i 11 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-26 17:39:45.000326 + +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:39:45.239775 + +[28] [Step Debug] -> + +[36] Log opened at 2024-03-26 17:39:45.272091 +[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] -> + +[28] Log closed at 2024-03-26 17:39:45.273878 + +[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/Cosidotapablanda.php -n 1324 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:39:45.309835 + +[36] [Step Debug] <- run -i 11 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-26 17:39:45.627313 + +[28] Log opened at 2024-03-26 17:39:46.017508 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 11 +[36] Log opened at 2024-03-26 17:39:46.100062 +[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] Log opened at 2024-03-26 17:39:46.103705 +[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/Cosidotapablanda.php -n 1324 +[36] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[36] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[36] [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] -> + +[36] [Step Debug] <- run -i 11 +[33] [Step Debug] <- run -i 11 +[31] Log opened at 2024-03-26 17:39:46.270614 +[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] -> + +[38] Log opened at 2024-03-26 17:39:46.274096 +[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] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[38] [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] -> + +[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] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:39:46.457488 + +[31] [Step Debug] <- run -i 13 +[38] [Step Debug] <- run -i 13 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-26 17:39:46.565560 + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:39:46.640000 + +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:39:46.805626 + +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:39:46.870307 + +[26] Log opened at 2024-03-26 17:39:58.522745 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:40:00.035358 + +[26] Log opened at 2024-03-26 17:40:00.317968 +[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] -> + +[39] Log opened at 2024-03-26 17:40:00.324189 +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[26] [Step Debug] -> + +[27] Log opened at 2024-03-26 17:40:00.324390 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[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. +[32] Log opened at 2024-03-26 17:40:00.324664 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[39] [Step Debug] -> + +[28] Log opened at 2024-03-26 17:40:00.324941 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[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. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] -> + +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] Log opened at 2024-03-26 17:40:00.324968 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[39] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[39] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[27] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[32] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[28] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[40] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[39] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[27] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[32] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[28] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[40] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[39] [Step Debug] <- run -i 10 +[27] [Step Debug] <- run -i 10 +[32] [Step Debug] <- run -i 10 +[28] [Step Debug] <- run -i 10 +[40] [Step Debug] <- run -i 10 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:40:00.466324 + +[26] Log opened at 2024-03-26 17:40:00.469760 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:40:00.794543 + +[32] Log opened at 2024-03-26 17:40:00.796728 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:40:00.824849 + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[27] Log opened at 2024-03-26 17:40:00.827184 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:40:00.876630 + +[28] Log opened at 2024-03-26 17:40:00.878778 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:40:00.964662 + +[40] Log opened at 2024-03-26 17:40:00.967132 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[39] [Step Debug] -> + +[39] Log closed at 2024-03-26 17:40:00.996857 + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 11 +[27] [Step Debug] <- run -i 13 +[28] [Step Debug] <- run -i 13 +[40] [Step Debug] <- run -i 11 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:40:01.404960 + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:40:01.440228 + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:40:01.470534 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:40:01.527449 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:40:01.556851 + +[28] Log opened at 2024-03-26 17:40:01.724713 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 11 +[32] Log opened at 2024-03-26 17:40:01.879869 +[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] -> + +[27] Log opened at 2024-03-26 17:40:01.881580 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[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] -> + +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [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] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [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] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[32] [Step Debug] <- run -i 11 +[27] [Step Debug] <- run -i 11 +[40] Log opened at 2024-03-26 17:40:02.040705 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[39] Log opened at 2024-03-26 17:40:02.043034 +[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] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[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] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[40] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[39] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[39] [Step Debug] -> + +[40] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [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] -> + +[40] [Step Debug] <- run -i 11 +[39] [Step Debug] <- run -i 11 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:40:02.131755 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:40:02.292056 + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:40:02.367100 + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:40:02.447757 + +[39] [Step Debug] -> + +[39] Log closed at 2024-03-26 17:40:02.514554 + +[31] Log opened at 2024-03-26 17:41:28.056139 +[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/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] Log closed at 2024-03-26 17:41:29.507103 + +[31] Log opened at 2024-03-26 17:41:29.770399 +[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] -> + +[26] Log opened at 2024-03-26 17:41:29.775488 +[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'. +[28] Log opened at 2024-03-26 17:41:29.775951 +[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. +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] -> + +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[31] [Step Debug] -> + +[41] Log opened at 2024-03-26 17:41:29.776259 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[32] Log opened at 2024-03-26 17:41:29.776224 +[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. +[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. +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Step Debug] -> + +[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[41] [Step Debug] -> + +[27] Log opened at 2024-03-26 17:41:29.777758 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[31] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[31] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[31] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[26] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[26] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[41] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[26] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[32] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[41] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[26] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[32] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[41] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[31] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 10 +[28] [Step Debug] <- run -i 10 +[32] [Step Debug] <- run -i 10 +[41] [Step Debug] <- run -i 10 +[27] [Step Debug] <- run -i 5 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:41:29.924797 + +[31] Log opened at 2024-03-26 17:41:29.927840 +[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/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:41:30.149684 + +[28] Log opened at 2024-03-26 17:41:30.151597 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:41:30.192704 + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[27] Log opened at 2024-03-26 17:41:30.195259 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:41:30.250943 + +[26] Log opened at 2024-03-26 17:41:30.253351 +[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] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[26] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:41:30.284880 + +[32] Log opened at 2024-03-26 17:41:30.286533 +[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] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [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] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 17:41:30.363107 + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[31] [Step Debug] <- run -i 11 +[28] [Step Debug] <- run -i 11 +[27] [Step Debug] <- run -i 13 +[26] [Step Debug] <- run -i 13 +[32] [Step Debug] <- run -i 11 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:41:30.740243 + +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:41:30.776386 + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:41:30.808889 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:41:30.856776 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:41:30.886729 + +[27] Log opened at 2024-03-26 17:41:31.241270 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[32] Log opened at 2024-03-26 17:41:31.297277 +[28] Log opened at 2024-03-26 17:41:31.297275 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [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). +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Step Debug] -> + +[28] [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] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[27] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 5 +[28] [Step Debug] <- run -i 5 +[41] Log opened at 2024-03-26 17:41:31.413074 +[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'. +[26] Log opened at 2024-03-26 17:41:31.413420 +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[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). +[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'. +[41] [Step Debug] -> + +[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] -> + +[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] -> + +[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] -> + +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[41] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[41] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[41] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[41] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[26] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:41:31.698432 + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:41:31.760465 + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:41:31.817263 + +[27] Log opened at 2024-03-26 17:41:36.666283 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[41] [Step Debug] <- run -i 13 +[26] [Step Debug] <- run -i 13 +[27] [Step Debug] <- run -i 11 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:41:37.041336 + +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 17:41:37.107241 + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:41:38.315564 + +[27] Log opened at 2024-03-26 17:41:38.523110 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[40] Log opened at 2024-03-26 17:41:38.529434 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] Log opened at 2024-03-26 17:41:38.531680 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[27] [Step Debug] -> + +[38] Log opened at 2024-03-26 17:41:38.531865 +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[40] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] Log opened at 2024-03-26 17:41:38.531764 +[40] [Step Debug] -> + +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[39] [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'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [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. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] -> + +[38] [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. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[33] [Step Debug] -> + +[42] Log opened at 2024-03-26 17:41:38.533042 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[40] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[40] [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. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[42] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[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] -> + +[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] -> + +[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] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[27] [Step Debug] <- run -i 11 +[40] [Step Debug] <- run -i 10 +[38] [Step Debug] <- run -i 5 +[39] [Step Debug] <- run -i 5 +[33] [Step Debug] <- run -i 5 +[42] [Step Debug] <- run -i 5 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:41:38.653797 + +[27] Log opened at 2024-03-26 17:41:38.657160 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:41:38.926369 + +[40] Log opened at 2024-03-26 17:41:38.928860 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:41:38.959156 + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[33] Log opened at 2024-03-26 17:41:38.961542 +[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] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[42] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[33] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:41:39.008560 + +[42] Log opened at 2024-03-26 17:41:39.011154 +[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] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[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] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:41:39.036756 + +[38] Log opened at 2024-03-26 17:41:39.038572 +[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] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[42] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[38] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[39] [Step Debug] -> + +[39] Log closed at 2024-03-26 17:41:39.069194 + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[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] -> + +[27] [Step Debug] <- run -i 11 +[40] [Step Debug] <- run -i 11 +[33] [Step Debug] <- run -i 11 +[42] [Step Debug] <- run -i 11 +[38] [Step Debug] <- run -i 11 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:41:39.441456 + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:41:39.475166 + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:41:39.507277 + +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:41:39.544413 + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:41:39.575098 + +[27] Log opened at 2024-03-26 17:41:39.728638 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 11 +[42] Log opened at 2024-03-26 17:41:39.847249 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[40] Log opened at 2024-03-26 17:41:39.866159 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[42] [Step Debug] <- run -i 11 +[40] [Step Debug] <- run -i 5 +[38] Log opened at 2024-03-26 17:41:39.999369 +[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] Log opened at 2024-03-26 17:41:40.018883 +[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] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[33] [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] -> + +[33] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [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] -> + +[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] -> + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 17:41:40.117113 + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:41:40.258635 + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:41:40.333756 + +[31] Log opened at 2024-03-26 17:41:50.303287 +[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/Cosidotapablanda.php -n 1324 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[38] [Step Debug] <- run -i 11 +[33] [Step Debug] <- run -i 11 +[31] [Step Debug] <- run -i 11 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:41:50.650123 + +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:41:50.710957 + +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:41:50.781628 + +[38] Log opened at 2024-03-26 17:41:50.854677 +[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/Cosidotapablanda.php -n 1324 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] Log closed at 2024-03-26 17:41:51.221391 + +[38] Log opened at 2024-03-26 17:41:54.673480 +[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/Cosidotapablanda.php -n 1324 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] Log closed at 2024-03-26 17:41:56.151437 + +[38] Log opened at 2024-03-26 17:41:56.372292 +[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/Cosidotapablanda.php -n 1324 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[28] Log opened at 2024-03-26 17:41:56.404096 +[32] Log opened at 2024-03-26 17:41:56.404093 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[28] [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'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [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). +[28] [Step Debug] -> + +[32] [Step Debug] -> + +[26] Log opened at 2024-03-26 17:41:56.404699 +[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. +[41] Log opened at 2024-03-26 17:41:56.405048 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] -> + +[39] Log opened at 2024-03-26 17:41:56.405752 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[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. +[41] [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] -> + +[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[41] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[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] -> + +[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] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [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] -> + +[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] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[38] [Step Debug] <- run -i 11 +[28] [Step Debug] <- run -i 5 +[32] [Step Debug] <- run -i 5 +[26] [Step Debug] <- run -i 5 +[39] [Step Debug] <- run -i 5 +[41] [Step Debug] <- run -i 5 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:41:56.505978 + +[38] Log opened at 2024-03-26 17:41:56.508289 +[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/Cosidotapablanda.php -n 1324 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:41:56.752712 + +[26] Log opened at 2024-03-26 17:41:56.755112 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:41:56.883455 + +[32] Log opened at 2024-03-26 17:41:56.886034 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[39] [Step Debug] -> + +[39] Log closed at 2024-03-26 17:41:56.924079 + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[39] Log opened at 2024-03-26 17:41:56.926223 +[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] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:41:56.956657 + +[28] Log opened at 2024-03-26 17:41:56.958762 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[39] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[28] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 17:41:57.000407 + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [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] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[39] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[38] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 11 +[39] [Step Debug] <- run -i 13 +[28] [Step Debug] <- run -i 13 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:41:57.369996 + +[39] [Step Debug] -> + +[39] Log closed at 2024-03-26 17:41:57.404137 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:41:57.436178 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:41:57.502807 + +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:41:57.534357 + +[38] Log opened at 2024-03-26 17:41:57.623790 +[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/Cosidotapablanda.php -n 1324 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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 +[39] Log opened at 2024-03-26 17:41:57.802714 +[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] -> + +[26] Log opened at 2024-03-26 17:41:57.804880 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [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] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [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] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[39] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[26] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[39] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [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] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[39] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 11 +[41] Log opened at 2024-03-26 17:41:57.947444 +[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] -> + +[32] Log opened at 2024-03-26 17:41:57.951591 +[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] -> + +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[41] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1324 +[32] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [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] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:41:58.020471 + +[32] [Step Debug] <- run -i 13 +[41] [Step Debug] <- run -i 13 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:41:58.341805 + +[39] [Step Debug] -> + +[39] Log closed at 2024-03-26 17:41:58.411612 + +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 17:41:58.488451 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:41:58.549262 + +[40] Log opened at 2024-03-26 17:45:00.523497 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 11 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:45:01.994011 + +[40] Log opened at 2024-03-26 17:45:02.281375 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[31] Log opened at 2024-03-26 17:45:02.288080 +[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). +[33] Log opened at 2024-03-26 17:45:02.288013 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[28] Log opened at 2024-03-26 17:45:02.288802 +[31] [Step Debug] -> + +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[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'. +[28] [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. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] Log opened at 2024-03-26 17:45:02.289202 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[33] [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] -> + +[26] Log opened at 2024-03-26 17:45:02.289700 +[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] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[31] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[33] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[33] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[31] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[28] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[33] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[38] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[31] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[28] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[33] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[38] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[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] -> + +[40] [Step Debug] <- run -i 11 +[31] [Step Debug] <- run -i 10 +[28] [Step Debug] <- run -i 10 +[33] [Step Debug] <- run -i 10 +[38] [Step Debug] <- run -i 10 +[26] [Step Debug] <- run -i 5 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:45:02.432701 + +[40] Log opened at 2024-03-26 17:45:02.435870 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:45:02.648816 + +[31] Log opened at 2024-03-26 17:45:02.650862 +[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/Cosidotapablanda.php -n 1316 +[31] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:45:02.680833 + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[31] [Step Debug] -> + +[28] Log opened at 2024-03-26 17:45:02.682596 +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[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] -> + +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:45:02.760046 + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[33] Log opened at 2024-03-26 17:45:02.762774 +[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] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:45:02.800829 + +[26] Log opened at 2024-03-26 17:45:02.803546 +[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] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:45:02.844069 + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[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" +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[40] [Step Debug] <- run -i 11 +[31] [Step Debug] <- run -i 11 +[28] [Step Debug] <- run -i 11 +[33] [Step Debug] <- run -i 13 +[26] [Step Debug] <- run -i 13 +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:45:03.231218 + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:45:03.262067 + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:45:03.351528 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:45:03.392638 + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:45:03.416585 + +[26] Log opened at 2024-03-26 17:45:03.528641 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[31] Log opened at 2024-03-26 17:45:03.659230 +[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] -> + +[38] Log opened at 2024-03-26 17:45:03.676919 +[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] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[31] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[31] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [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" +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[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] -> + +[31] [Step Debug] <- run -i 11 +[38] [Step Debug] <- run -i 11 +[28] Log opened at 2024-03-26 17:45:03.887740 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[33] Log opened at 2024-03-26 17:45:03.887824 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[33] [Step Debug] -> + +[28] [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] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[33] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [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" +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:45:03.927320 + +[33] [Step Debug] <- run -i 13 +[28] [Step Debug] <- run -i 13 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:45:04.114204 + +[31] [Step Debug] -> + +[31] Log closed at 2024-03-26 17:45:04.187174 + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:45:04.334534 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:45:04.399243 + +[32] Log opened at 2024-03-26 17:45:36.232944 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 12 +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 13 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 17 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 19 -n "$direccionesEnvio[0]" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_into -i 20 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 23 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 25 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 27 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 28 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 29 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 30 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 31 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 32 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 33 -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] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 37 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 38 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 39 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 41 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 42 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 43 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 45 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 46 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 48 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 49 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 50 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 51 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 52 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 53 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 54 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 55 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 56 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 57 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 58 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 59 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 60 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 61 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 62 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 63 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 64 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 65 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 66 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 67 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 68 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 69 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 70 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 71 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 72 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 73 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 74 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 75 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 76 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 77 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 78 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 79 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 80 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 81 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 82 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 83 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 84 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 85 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 86 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 87 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 88 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 89 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 90 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 91 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 92 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 93 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 94 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 95 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 96 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 97 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 98 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 99 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 100 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 101 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 102 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 103 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 104 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 105 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 106 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 107 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 108 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 109 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 110 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 111 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 112 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 113 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 114 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 115 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 116 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 117 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 118 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 119 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 120 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 121 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 122 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 123 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 124 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 125 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 126 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 127 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 128 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 129 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 130 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 131 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 132 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 133 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 134 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 135 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 136 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 137 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 138 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 139 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 140 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 141 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 142 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 143 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 144 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 145 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 146 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 147 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 148 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 149 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 150 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 151 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 152 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 153 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 154 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 155 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 156 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 157 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 158 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 159 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 160 -n "$this->viewData" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 161 -n "$this->viewData[\"direccionesList\"]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 162 -n "$this->viewData[\"direccionesList\"][1]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 163 -n "$this->viewData[\"direccionesList\"][1][0]" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 164 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 165 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 166 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 167 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 168 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 169 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 170 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 171 -n "$this->viewData" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 172 -n "$this->viewData[\"direccionesList\"]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 173 -n "$this->viewData[\"direccionesList\"][1]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 174 -n "$this->viewData[\"direccionesList\"][1][0]" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 175 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 176 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 177 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 178 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 179 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 180 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 181 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 182 -n "$this->viewData" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 183 -n "$this->viewData[\"direccionesList\"]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 184 -n "$this->viewData[\"direccionesList\"][1]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 185 -n "$this->viewData[\"direccionesList\"][1][0]" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 186 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 187 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 188 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 189 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 190 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 191 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 192 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 193 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 194 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 195 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 196 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 197 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 198 -n "$this->viewData" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 199 -n "$this->viewData[\"direccionesList\"]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 200 -n "$this->viewData[\"direccionesList\"][1]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 201 -n "$this->viewData[\"direccionesList\"][1][0]" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 202 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:47:43.915492 + +[32] Log opened at 2024-03-26 17:47:44.198832 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[42] Log opened at 2024-03-26 17:47:44.249789 +[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] -> + +[40] Log opened at 2024-03-26 17:47:44.251444 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[43] Log opened at 2024-03-26 17:47:44.251263 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[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] -> + +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[26] Log opened at 2024-03-26 17:47:44.252058 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[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. +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] -> + +[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. +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[38] Log opened at 2024-03-26 17:47:44.253117 +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [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'. +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[38] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [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] -> + +[32] [Step Debug] <- run -i 12 +[42] [Step Debug] <- run -i 5 +[40] [Step Debug] <- run -i 5 +[43] [Step Debug] <- run -i 5 +[26] [Step Debug] <- run -i 5 +[38] [Step Debug] <- run -i 5 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:47:44.349682 + +[32] Log opened at 2024-03-26 17:47:44.353689 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:47:44.541495 + +[40] Log opened at 2024-03-26 17:47:44.543178 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:47:44.622173 + +[42] Log opened at 2024-03-26 17:47:44.624274 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[42] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:47:44.669679 + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[26] Log opened at 2024-03-26 17:47:44.672223 +[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] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:47:44.703325 + +[43] Log opened at 2024-03-26 17:47:44.705677 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[43] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:47:44.742576 + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[43] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[43] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[43] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[32] [Step Debug] <- run -i 12 +[40] [Step Debug] <- run -i 12 +[42] [Step Debug] <- run -i 12 +[26] [Step Debug] <- run -i 14 +[43] [Step Debug] <- run -i 14 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:47:45.129241 + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:47:45.248671 + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:47:45.281996 + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:47:45.317005 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:47:45.350535 + +[38] Log opened at 2024-03-26 17:47:45.534111 +[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/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 12 +[40] Log opened at 2024-03-26 17:47:45.814835 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[26] Log opened at 2024-03-26 17:47:45.816956 +[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. +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[26] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [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] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[26] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[43] Log opened at 2024-03-26 17:47:45.854661 +[42] Log opened at 2024-03-26 17:47:45.854616 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[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'. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[42] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[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] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[40] [Step Debug] <- run -i 14 +[26] [Step Debug] <- run -i 14 +[43] [Step Debug] <- run -i 5 +[42] [Step Debug] <- run -i 5 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:47:45.958088 + +[40] [Step Debug] -> + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:47:46.260342 + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:47:46.338036 + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:47:46.401102 + +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:47:46.473945 + +[33] Log opened at 2024-03-26 17:48:34.668276 +[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/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 13 +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 17 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 19 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:48:40.405905 + +[33] Log opened at 2024-03-26 17:48:40.770929 +[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] -> + +[32] Log opened at 2024-03-26 17:48:40.774762 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[38] Log opened at 2024-03-26 17:48:40.775080 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[41] Log opened at 2024-03-26 17:48:40.774476 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[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'. +[28] Log opened at 2024-03-26 17:48:40.774465 +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[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'. +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] -> + +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[38] [Step Debug] -> + +[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[41] [Step Debug] -> + +[28] [Step Debug] -> + +[44] Log opened at 2024-03-26 17:48:40.775774 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[32] [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] -> + +[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] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[33] [Step Debug] -> + +[32] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[38] [Step Debug] -> + +[32] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[38] [Step Debug] -> + +[41] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[41] [Step Debug] -> + +[28] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[28] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 5 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[33] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[41] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[28] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[28] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[28] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[28] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[32] [Step Debug] <- run -i 12 +[38] [Step Debug] <- run -i 12 +[41] [Step Debug] <- run -i 12 +[28] [Step Debug] <- run -i 12 +[44] [Step Debug] <- run -i 12 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:48:40.944553 + +[33] Log opened at 2024-03-26 17:48:40.948040 +[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] <- run -i 5 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:48:41.211405 + +[38] Log opened at 2024-03-26 17:48:41.214373 +[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 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:48:41.315414 + +[28] Log opened at 2024-03-26 17:48:41.318337 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 17:48:41.358030 + +[41] Log opened at 2024-03-26 17:48:41.361873 +[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] <- run -i 4 +[28] [Step Debug] <- run -i 5 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:48:41.397280 + +[32] Log opened at 2024-03-26 17:48:41.399664 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:48:41.435184 + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 17:48:41.473787 + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:48:41.566712 + +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 17:48:41.662673 + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:48:41.722963 + +[32] [Step Debug] <- breakpoint_remove -i 12 -d 320131 +[32] [Step Debug] -> + +[43] Log opened at 2024-03-26 17:49:10.510533 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[42] Log opened at 2024-03-26 17:49:10.514698 +[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] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[32] [Step Debug] <- run -i 13 +[43] [Step Debug] <- run -i 11 +[42] [Step Debug] <- run -i 11 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:49:10.904097 + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:49:11.934431 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:49:11.963833 + +[42] Log opened at 2024-03-26 17:49:12.197301 +[43] Log opened at 2024-03-26 17:49:12.197303 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[42] [Step Debug] -> + +[43] [Step Debug] -> + +[26] Log opened at 2024-03-26 17:49:12.198130 +[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. +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[45] Log opened at 2024-03-26 17:49:12.199374 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [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] -> + +[33] Log opened at 2024-03-26 17:49:12.203585 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[44] Log opened at 2024-03-26 17:49:12.203989 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[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] -> + +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[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] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[43] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[44] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[45] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[45] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[44] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[45] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[45] [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] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[42] [Step Debug] <- run -i 14 +[43] [Step Debug] <- run -i 14 +[26] [Step Debug] <- run -i 14 +[45] [Step Debug] <- run -i 11 +[33] [Step Debug] <- run -i 11 +[44] [Step Debug] <- run -i 11 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 17:49:12.618992 + +[45] Log opened at 2024-03-26 17:49:12.620941 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- run -i 5 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:49:12.655159 + +[43] Log opened at 2024-03-26 17:49:12.657283 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[26] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:49:12.692568 + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[26] Log opened at 2024-03-26 17:49:12.694442 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 17:49:12.721716 + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[44] Log opened at 2024-03-26 17:49:12.723627 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:49:12.755046 + +[33] Log opened at 2024-03-26 17:49:12.756710 +[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] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[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] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:49:12.833879 + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 17:49:12.919293 + +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[43] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[26] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[38] Log opened at 2024-03-26 17:49:36.648512 +[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/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[43] [Step Debug] <- run -i 12 +[26] [Step Debug] <- run -i 12 +[44] [Step Debug] <- run -i 16 +[33] [Step Debug] <- run -i 16 +[38] [Step Debug] <- run -i 12 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:49:36.789686 + +[38] [Step Debug] -> + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 17:49:36.996568 + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:49:37.028668 + +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 13 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 17 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 19 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:49:44.106061 + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:49:44.129134 + +[38] Log opened at 2024-03-26 17:49:44.349285 +[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] -> + +[41] Log opened at 2024-03-26 17:49:44.355473 +[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. +[28] Log opened at 2024-03-26 17:49:44.356037 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[41] [Step Debug] -> + +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[32] Log opened at 2024-03-26 17:49:44.356949 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[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] -> + +[40] Log opened at 2024-03-26 17:49:44.356511 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[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. +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] Log opened at 2024-03-26 17:49:44.357383 +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] -> + +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [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. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[42] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[38] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[28] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[40] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[40] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[42] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[32] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[40] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[42] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 5 -n notify_ok -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 5 -n notify_ok -v 1 +[32] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 5 -n notify_ok -v 1 +[40] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 5 -n notify_ok -v 1 +[42] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[40] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[38] [Step Debug] <- run -i 12 +[41] [Step Debug] <- run -i 12 +[28] [Step Debug] <- run -i 12 +[32] [Step Debug] <- run -i 12 +[42] [Step Debug] <- run -i 12 +[40] [Step Debug] <- run -i 12 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:49:44.562575 + +[38] Log opened at 2024-03-26 17:49:44.566278 +[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 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:49:44.814047 + +[28] Log opened at 2024-03-26 17:49:44.816620 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:49:44.850755 + +[42] Log opened at 2024-03-26 17:49:44.852725 +[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] -> + +[28] [Step Debug] <- run -i 5 +[42] [Step Debug] <- run -i 5 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 17:49:44.923349 + +[41] Log opened at 2024-03-26 17:49:44.925192 +[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] -> + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:49:44.953906 + +[40] Log opened at 2024-03-26 17:49:44.956025 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[41] [Step Debug] <- run -i 5 +[40] [Step Debug] <- run -i 5 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:49:44.997377 + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:49:45.034456 + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:49:45.169232 + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:49:45.200655 + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 17:49:45.275933 + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:49:45.349257 + +[42] Log opened at 2024-03-26 17:49:45.487148 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 12 +[28] Log opened at 2024-03-26 17:49:45.724970 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[32] Log opened at 2024-03-26 17:49:45.779085 +[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] -> + +[28] [Step Debug] <- run -i 12 +[32] [Step Debug] <- run -i 5 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:49:45.873561 + +[42] Log opened at 2024-03-26 17:49:45.900950 +[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. +[40] Log opened at 2024-03-26 17:49:45.901430 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[42] [Step Debug] -> + +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [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] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[40] [Step Debug] -> + +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[40] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[40] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[40] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[40] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:49:46.081702 + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:49:46.163425 + +[45] Log opened at 2024-03-26 17:51:45.025207 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[42] [Step Debug] <- run -i 14 +[40] [Step Debug] <- run -i 14 +[45] [Step Debug] <- run -i 12 +[40] [Step Debug] -> + +[45] [Step Debug] -> + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:51:45.410308 + +[42] [Step Debug] -> + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:51:45.472029 + +[45] [Step Debug] -> + +[45] [Step Debug] <- stack_get -i 13 +[45] [Step Debug] -> + +[45] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[45] [Step Debug] -> + +[45] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[45] [Step Debug] -> + +[45] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[45] [Step Debug] -> + +[45] [Step Debug] <- context_names -i 17 -d 0 +[45] [Step Debug] -> + +[45] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[45] [Step Debug] -> + +[33] Log opened at 2024-03-26 17:51:55.231889 +[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/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 13 +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 17 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 19 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:51:59.904353 + +[45] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[45] [Step Debug] -> + +[45] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[45] [Step Debug] -> + +[45] [Step Debug] <- eval -i 21 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[45] [Step Debug] -> + +[33] Log opened at 2024-03-26 17:52:00.289818 +[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] -> + +[26] Log opened at 2024-03-26 17:52:00.294761 +[44] Log opened at 2024-03-26 17:52:00.294828 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[43] Log opened at 2024-03-26 17:52:00.295145 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] Log opened at 2024-03-26 17:52:00.295349 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] -> + +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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. +[44] [Step Debug] -> + +[41] Log opened at 2024-03-26 17:52:00.295646 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] -> + +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[38] [Step Debug] -> + +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] -> + +[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. +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[33] [Step Debug] -> + +[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[41] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[26] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[44] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[43] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[38] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[41] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[44] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[43] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[43] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[43] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[43] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[41] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[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] -> + +[26] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[26] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[44] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[43] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[38] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[41] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[26] [Step Debug] <- run -i 10 +[44] [Step Debug] <- run -i 10 +[43] [Step Debug] <- run -i 10 +[38] [Step Debug] <- run -i 10 +[41] [Step Debug] <- run -i 10 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:52:00.446341 + +[33] Log opened at 2024-03-26 17:52:00.449836 +[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] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 17:52:00.724045 + +[41] Log opened at 2024-03-26 17:52:00.725869 +[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] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:52:00.749835 + +[38] Log opened at 2024-03-26 17:52:00.751539 +[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] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:52:00.780130 + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] Log opened at 2024-03-26 17:52:00.781822 +[41] [Step Debug] -> + +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[38] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[41] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[41] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 14 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 15 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 17:52:00.856135 + +[44] Log opened at 2024-03-26 17:52:00.858209 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[44] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:52:00.886947 + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[41] [Step Debug] <- run -i 12 +[38] [Step Debug] <- run -i 12 +[43] [Step Debug] <- run -i 16 +[44] [Step Debug] <- run -i 14 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:52:01.296779 + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 17:52:01.326246 + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:52:01.356940 + +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 17:52:01.390682 + +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:52:01.417973 + +[41] Log opened at 2024-03-26 17:52:01.532800 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 12 +[38] Log opened at 2024-03-26 17:52:01.682447 +[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/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[43] Log opened at 2024-03-26 17:52:01.705259 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[38] [Step Debug] <- run -i 12 +[43] [Step Debug] <- run -i 5 +[44] Log opened at 2024-03-26 17:52:01.833223 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[26] Log opened at 2024-03-26 17:52:01.836915 +[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] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[26] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 17:52:01.981163 + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:52:02.078961 + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:52:02.142407 + +[28] Log opened at 2024-03-26 17:52:07.658818 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[44] [Step Debug] <- run -i 14 +[26] [Step Debug] <- run -i 14 +[28] [Step Debug] <- run -i 12 +[28] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 17:52:08.024374 + +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:52:08.091206 + +[28] [Step Debug] -> + +[28] [Step Debug] <- stack_get -i 13 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[28] [Step Debug] -> + +[28] [Step Debug] <- context_names -i 17 -d 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 19 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:52:11.444454 + +[45] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[45] [Step Debug] -> + +[45] [Step Debug] <- eval -i 23 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[45] [Step Debug] -> + +[45] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[45] [Step Debug] -> + +[32] Log opened at 2024-03-26 17:52:11.767928 +[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] -> + +[28] Log opened at 2024-03-26 17:52:11.772159 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[40] Log opened at 2024-03-26 17:52:11.772814 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] Log opened at 2024-03-26 17:52:11.773228 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [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. +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[42] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] Log opened at 2024-03-26 17:52:11.774425 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[28] [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] -> + +[28] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[28] [Step Debug] -> + +[46] Log opened at 2024-03-26 17:52:11.775137 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[46] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 5 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[40] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[42] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[33] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[46] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[40] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[42] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[33] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[46] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[42] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[42] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[33] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[46] [Step Debug] -> + +[32] [Step Debug] <- run -i 12 +[28] [Step Debug] <- run -i 12 +[40] [Step Debug] <- run -i 12 +[42] [Step Debug] <- run -i 12 +[33] [Step Debug] <- run -i 12 +[46] [Step Debug] <- run -i 12 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:52:11.903692 + +[32] Log opened at 2024-03-26 17:52:11.905897 +[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] <- run -i 5 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:52:12.206423 + +[33] Log opened at 2024-03-26 17:52:12.208829 +[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] <- run -i 5 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:52:12.298797 + +[28] Log opened at 2024-03-26 17:52:12.301671 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:52:12.338971 + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[42] Log opened at 2024-03-26 17:52:12.341256 +[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] -> + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:52:12.369147 + +[40] Log opened at 2024-03-26 17:52:12.371315 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[46] [Step Debug] -> + +[46] Log closed at 2024-03-26 17:52:12.403029 + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[40] [Step Debug] -> + +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[40] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:52:12.435641 + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:52:12.485097 + +[28] [Step Debug] <- run -i 12 +[42] [Step Debug] <- run -i 12 +[40] [Step Debug] <- run -i 12 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:52:12.917006 + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:52:12.946900 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:52:12.999861 + +[33] Log opened at 2024-03-26 17:52:13.115973 +[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/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 12 +[46] Log opened at 2024-03-26 17:52:13.282920 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[42] Log opened at 2024-03-26 17:52:13.285580 +[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] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[46] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[42] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[46] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[46] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[46] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[46] [Step Debug] <- run -i 12 +[42] [Step Debug] <- run -i 12 +[32] Log opened at 2024-03-26 17:52:13.417460 +[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] -> + +[40] Log opened at 2024-03-26 17:52:13.421062 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[40] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[40] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[40] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:52:13.462869 + +[32] [Step Debug] <- run -i 12 +[40] [Step Debug] <- run -i 12 +[45] [Step Debug] <- run -i 25 +[42] [Step Debug] -> + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:52:13.782729 + +[46] [Step Debug] -> + +[46] [Step Debug] -> + +[46] Log closed at 2024-03-26 17:52:13.855943 + +[40] [Step Debug] -> + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:52:13.914133 + +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:52:13.970608 + +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 17:52:14.400136 + +[38] Log opened at 2024-03-26 17:52:19.966643 +[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/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 12 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 13 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 17 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 19 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:52:28.248523 + +[38] Log opened at 2024-03-26 17:52:28.584483 +[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] -> + +[43] Log opened at 2024-03-26 17:52:28.590650 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[44] Log opened at 2024-03-26 17:52:28.591162 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[45] Log opened at 2024-03-26 17:52:28.592381 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[28] Log opened at 2024-03-26 17:52:28.592622 +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] Log opened at 2024-03-26 17:52:28.592257 +[45] [Step Debug] -> + +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] -> + +[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] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[38] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[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] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[38] [Step Debug] <- run -i 12 +[43] [Step Debug] <- run -i 10 +[44] [Step Debug] <- run -i 10 +[45] [Step Debug] <- run -i 10 +[28] [Step Debug] <- run -i 10 +[26] [Step Debug] <- run -i 10 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:52:28.763202 + +[38] Log opened at 2024-03-26 17:52:28.774789 +[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 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 17:52:29.009074 + +[45] Log opened at 2024-03-26 17:52:29.011838 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:52:29.041533 + +[28] Log opened at 2024-03-26 17:52:29.043494 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:52:29.070341 + +[26] Log opened at 2024-03-26 17:52:29.072461 +[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] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 17:52:29.101344 + +[44] Log opened at 2024-03-26 17:52:29.103608 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[28] [Step Debug] -> + +[45] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[28] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[44] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:52:29.173657 + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:52:29.206877 + +[33] Log opened at 2024-03-26 17:53:10.887752 +[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] -> + +[42] Log opened at 2024-03-26 17:53:10.888134 +[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] -> + +[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] -> + +[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] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[33] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1381 +[42] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[45] [Step Debug] <- run -i 20 +[28] [Step Debug] <- run -i 20 +[26] [Step Debug] <- run -i 20 +[44] [Step Debug] <- run -i 20 +[33] [Step Debug] <- run -i 12 +[42] [Step Debug] <- run -i 12 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:53:11.279666 + +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 17:53:11.307364 + +[33] [Step Debug] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:53:11.334989 + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:53:11.336845 + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 17:53:11.372701 + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 13 +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[33] [Step Debug] -> + +[33] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 17 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_remove -i 19 -d 420075 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 20 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:53:17.653009 + +[33] Log opened at 2024-03-26 17:53:17.945227 +[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] -> + +[40] Log opened at 2024-03-26 17:53:17.949970 +[46] Log opened at 2024-03-26 17:53:17.949975 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[32] Log opened at 2024-03-26 17:53:17.950325 +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[46] [Step Debug] -> + +[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] -> + +[43] Log opened at 2024-03-26 17:53:17.951628 +[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'. +[38] Log opened at 2024-03-26 17:53:17.952045 +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [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] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[46] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[40] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[46] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[32] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[40] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[46] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[32] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[46] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [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] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[43] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[38] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[43] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[38] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[33] [Step Debug] <- run -i 11 +[40] [Step Debug] <- run -i 11 +[46] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 11 +[43] [Step Debug] <- run -i 10 +[38] [Step Debug] <- run -i 10 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:53:18.105499 + +[33] Log opened at 2024-03-26 17:53:18.108979 +[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] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:53:18.325421 + +[38] Log opened at 2024-03-26 17:53:18.327714 +[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] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:53:18.355928 + +[32] Log opened at 2024-03-26 17:53:18.357673 +[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] -> + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:53:18.391986 + +[40] Log opened at 2024-03-26 17:53:18.393872 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[38] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[40] [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" +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[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] -> + +[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] -> + +[40] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 13 -n max_children -v 100 +[40] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:53:18.431772 + +[40] [Step Debug] <- feature_set -i 14 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[40] [Step Debug] -> + +[43] Log opened at 2024-03-26 17:53:18.433625 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[46] [Step Debug] -> + +[46] Log closed at 2024-03-26 17:53:18.516123 + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[33] [Step Debug] <- run -i 17 +[38] [Step Debug] <- run -i 17 +[32] [Step Debug] <- run -i 17 +[40] [Step Debug] <- run -i 17 +[43] [Step Debug] <- run -i 13 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:53:19.017090 + +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:53:19.055752 + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:53:19.126029 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:53:19.166167 + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:53:19.195563 + +[38] Log opened at 2024-03-26 17:53:19.621241 +[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/Cosidotapablanda.php -n 1316 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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 +[43] Log opened at 2024-03-26 17:53:19.689785 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[32] Log opened at 2024-03-26 17:53:19.752035 +[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] -> + +[43] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 5 +[46] Log opened at 2024-03-26 17:53:19.959234 +[40] Log opened at 2024-03-26 17:53:19.959251 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[46] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[46] [Step Debug] -> + +[38] [Step Debug] -> + +[38] Log closed at 2024-03-26 17:53:20.009786 + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[46] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[46] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:53:20.109964 + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:53:20.170648 + +[26] Log opened at 2024-03-26 17:53:35.257368 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[40] [Step Debug] <- run -i 13 +[46] [Step Debug] <- run -i 13 +[26] [Step Debug] <- run -i 11 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:53:35.626266 + +[46] [Step Debug] -> + +[46] Log closed at 2024-03-26 17:53:35.688683 + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:53:36.851652 + +[26] Log opened at 2024-03-26 17:53:37.232328 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[45] Log opened at 2024-03-26 17:53:37.249835 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[28] Log opened at 2024-03-26 17:53:37.249957 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[44] Log opened at 2024-03-26 17:53:37.250177 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[42] Log opened at 2024-03-26 17:53:37.251195 +[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] -> + +[33] Log opened at 2024-03-26 17:53:37.251762 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[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] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [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] -> + +[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] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[45] [Step Debug] <- run -i 5 +[28] [Step Debug] <- run -i 5 +[44] [Step Debug] <- run -i 5 +[42] [Step Debug] <- run -i 5 +[33] [Step Debug] <- run -i 5 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:53:37.375073 + +[26] Log opened at 2024-03-26 17:53:37.378126 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:53:37.635307 + +[28] Log opened at 2024-03-26 17:53:37.637412 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 17:53:37.727662 + +[45] Log opened at 2024-03-26 17:53:37.730150 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 17:53:37.758569 + +[44] Log opened at 2024-03-26 17:53:37.760852 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] -> + +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[45] [Step Debug] -> + +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:53:37.798893 + +[33] Log opened at 2024-03-26 17:53:37.801846 +[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] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:53:37.830967 + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [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] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[28] [Step Debug] <- run -i 11 +[45] [Step Debug] <- run -i 11 +[44] [Step Debug] <- run -i 13 +[33] [Step Debug] <- run -i 13 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:53:38.259617 + +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 17:53:38.282581 + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:53:38.330951 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:53:38.373756 + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 17:53:38.406156 + +[33] Log opened at 2024-03-26 17:53:38.891147 +[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/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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 +[42] Log opened at 2024-03-26 17:53:39.175879 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[28] Log opened at 2024-03-26 17:53:39.175987 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[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] -> + +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [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] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:53:39.254656 + +[42] [Step Debug] <- run -i 13 +[28] [Step Debug] <- run -i 13 +[33] Log opened at 2024-03-26 17:53:39.520119 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[44] Log opened at 2024-03-26 17:53:39.520305 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[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. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[33] [Step Debug] -> + +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [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] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [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] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[33] [Step Debug] <- run -i 13 +[44] [Step Debug] <- run -i 13 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:53:39.635019 + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:53:39.709439 + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:53:39.917018 + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 17:53:39.977667 + +[32] Log opened at 2024-03-26 17:53:58.530424 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[32] [Step Debug] <- run -i 11 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:54:00.018752 + +[32] Log opened at 2024-03-26 17:54:00.309803 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[40] Log opened at 2024-03-26 17:54:00.321649 +[43] Log opened at 2024-03-26 17:54:00.321649 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[46] Log opened at 2024-03-26 17:54:00.321904 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[26] Log opened at 2024-03-26 17:54:00.322655 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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. +[43] [Step Debug] -> + +[40] [Step Debug] -> + +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[46] [Step Debug] -> + +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] -> + +[45] Log opened at 2024-03-26 17:54:00.323543 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[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] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[32] [Step Debug] <- run -i 11 +[40] [Step Debug] <- run -i 5 +[43] [Step Debug] <- run -i 5 +[46] [Step Debug] <- run -i 5 +[26] [Step Debug] <- run -i 5 +[45] [Step Debug] <- run -i 5 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:54:00.458575 + +[32] Log opened at 2024-03-26 17:54:00.462906 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[46] [Step Debug] -> + +[46] Log closed at 2024-03-26 17:54:00.711549 + +[46] Log opened at 2024-03-26 17:54:00.713410 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[46] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:54:00.762798 + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[26] Log opened at 2024-03-26 17:54:00.765175 +[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] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:54:00.803689 + +[40] Log opened at 2024-03-26 17:54:00.805486 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:54:00.870904 + +[43] Log opened at 2024-03-26 17:54:00.872777 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 17:54:00.919650 + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[28] Log opened at 2024-03-26 17:54:12.884538 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[42] Log opened at 2024-03-26 17:54:12.891435 +[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] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[32] [Step Debug] <- run -i 11 +[46] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 11 +[40] [Step Debug] <- run -i 11 +[43] [Step Debug] <- run -i 11 +[28] [Step Debug] <- run -i 11 +[42] [Step Debug] <- run -i 8 +[46] [Step Debug] -> + +[46] Log closed at 2024-03-26 17:54:13.254353 + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:54:13.279780 + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:54:13.372432 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:54:14.217134 + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:54:14.244382 + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:54:14.273784 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:54:14.302756 + +[42] Log opened at 2024-03-26 17:54:14.396324 +[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] -> + +[28] Log opened at 2024-03-26 17:54:14.401151 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[33] Log opened at 2024-03-26 17:54:14.401793 +[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. +[44] Log opened at 2024-03-26 17:54:14.402194 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[33] [Step Debug] -> + +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[45] Log opened at 2024-03-26 17:54:14.403301 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[47] Log opened at 2024-03-26 17:54:14.403511 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[47] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[28] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[33] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[44] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[28] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[33] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[44] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[42] [Step Debug] <- run -i 11 +[28] [Step Debug] <- run -i 10 +[33] [Step Debug] <- run -i 10 +[44] [Step Debug] <- run -i 10 +[45] [Step Debug] <- run -i 5 +[47] [Step Debug] <- run -i 5 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:54:14.520649 + +[42] Log opened at 2024-03-26 17:54:14.522671 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:54:14.866264 + +[28] Log opened at 2024-03-26 17:54:14.869325 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:54:14.903772 + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[33] Log opened at 2024-03-26 17:54:14.906205 +[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] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 17:54:14.939644 + +[44] Log opened at 2024-03-26 17:54:14.941832 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 17:54:14.979724 + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[45] Log opened at 2024-03-26 17:54:14.982433 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [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] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[47] [Step Debug] -> + +[47] Log closed at 2024-03-26 17:54:15.017084 + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[42] [Step Debug] <- run -i 11 +[28] [Step Debug] <- run -i 11 +[33] [Step Debug] <- run -i 13 +[44] [Step Debug] <- run -i 13 +[45] [Step Debug] <- run -i 11 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:54:15.482293 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:54:15.515487 + +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 17:54:15.547297 + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 17:54:15.577333 + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:54:15.607412 + +[42] Log opened at 2024-03-26 17:54:15.741561 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 11 +[45] Log opened at 2024-03-26 17:54:15.826431 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[47] Log opened at 2024-03-26 17:54:15.835865 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[47] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] -> + +[45] [Step Debug] <- run -i 13 +[47] [Step Debug] <- run -i 13 +[44] Log opened at 2024-03-26 17:54:16.004308 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[33] Log opened at 2024-03-26 17:54:16.004457 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [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. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[33] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[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] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [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] -> + +[44] [Step Debug] <- run -i 11 +[33] [Step Debug] <- run -i 11 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:54:16.111811 + +[47] [Step Debug] -> + +[47] Log closed at 2024-03-26 17:54:16.204404 + +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 17:54:16.275194 + +[33] [Step Debug] -> + +[33] Log closed at 2024-03-26 17:54:16.377576 + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 17:54:16.463600 + +[26] Log opened at 2024-03-26 17:55:09.010280 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:55:09.339066 + +[40] Log opened at 2024-03-26 17:55:09.741759 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 11 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:55:10.038117 + +[43] Log opened at 2024-03-26 17:55:42.286018 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 11 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:55:43.737881 + +[43] Log opened at 2024-03-26 17:55:44.050864 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[32] Log opened at 2024-03-26 17:55:44.052569 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[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] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[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] -> + +[42] Log opened at 2024-03-26 17:55:44.056546 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[28] Log opened at 2024-03-26 17:55:44.056586 +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[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] -> + +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[47] Log opened at 2024-03-26 17:55:44.059414 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] Log opened at 2024-03-26 17:55:44.059596 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[47] [Step Debug] -> + +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[28] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[47] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[47] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[45] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[47] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[45] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[28] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[47] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[32] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[47] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[47] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[47] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[47] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 12 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 12 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[43] [Step Debug] <- run -i 13 +[32] [Step Debug] <- run -i 13 +[42] [Step Debug] <- run -i 13 +[28] [Step Debug] <- run -i 13 +[47] [Step Debug] <- run -i 13 +[45] [Step Debug] <- run -i 13 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:55:44.242438 + +[43] Log opened at 2024-03-26 17:55:44.245441 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 5 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:55:44.552289 + +[32] Log opened at 2024-03-26 17:55:44.557229 +[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] -> + +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 17:55:44.605871 + +[45] Log opened at 2024-03-26 17:55:44.608476 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[47] [Step Debug] -> + +[47] Log closed at 2024-03-26 17:55:44.642466 + +[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] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[47] Log opened at 2024-03-26 17:55:44.644317 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:55:44.669596 + +[43] Log opened at 2024-03-26 17:55:44.671533 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:55:44.700921 + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:55:44.730606 + +[32] [Step Debug] <- run -i 11 +[45] [Step Debug] <- run -i 11 +[47] [Step Debug] <- run -i 11 +[43] [Step Debug] <- run -i 11 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 17:55:45.029972 + +[47] [Step Debug] -> + +[47] Log closed at 2024-03-26 17:55:45.064674 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:55:45.101419 + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:55:45.126859 + +[45] Log opened at 2024-03-26 17:55:45.378641 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[45] [Step Debug] <- run -i 11 +[32] Log opened at 2024-03-26 17:55:45.458601 +[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] -> + +[47] Log opened at 2024-03-26 17:55:45.485913 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[47] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] -> + +[32] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [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] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[32] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[32] [Step Debug] <- run -i 11 +[47] [Step Debug] <- run -i 11 +[28] Log opened at 2024-03-26 17:55:45.620480 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[42] Log opened at 2024-03-26 17:55:45.620535 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[42] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[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] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[28] [Step Debug] <- run -i 13 +[42] [Step Debug] <- run -i 13 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 17:55:45.837576 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 17:55:45.893360 + +[47] [Step Debug] -> + +[47] Log closed at 2024-03-26 17:55:45.960885 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 17:55:46.055865 + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 17:55:46.163815 + +[26] Log opened at 2024-03-26 17:56:11.396551 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:56:11.760399 + +[26] Log opened at 2024-03-26 17:56:11.832039 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:56:12.196296 + +[26] Log opened at 2024-03-26 17:56:13.615485 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 17:56:14.428141 + +[40] Log opened at 2024-03-26 17:56:54.935155 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 11 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 17:56:55.739690 + +[48] Log opened at 2024-03-26 17:59:00.598500 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 11 +[48] [Step Debug] -> + +[48] Log closed at 2024-03-26 17:59:01.424566 + +[43] Log opened at 2024-03-26 17:59:01.610767 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 11 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 17:59:01.895737 + +[45] Log opened at 2024-03-26 17:59:22.750534 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoDireccionesModel.php -n 97 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[45] [Step Debug] <- run -i 12 +[45] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- stack_get -i 13 +[45] [Step Debug] -> + +[45] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[45] [Step Debug] -> + +[45] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[45] [Step Debug] -> + +[45] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[45] [Step Debug] -> + +[45] [Step Debug] <- context_names -i 17 -d 0 +[45] [Step Debug] -> + +[45] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[45] [Step Debug] -> + +[45] [Step Debug] <- run -i 19 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 18:00:44.468386 + +[32] Log opened at 2024-03-26 18:00:44.684346 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoDireccionesModel.php -n 97 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 12 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:00:45.045139 + +[32] Log opened at 2024-03-26 18:00:46.604101 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoDireccionesModel.php -n 97 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 12 +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 13 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 17 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 19 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:00:50.683995 + +[47] Log opened at 2024-03-26 18:01:24.512876 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 11 +[47] [Step Debug] -> + +[47] Log closed at 2024-03-26 18:01:26.018529 + +[47] Log opened at 2024-03-26 18:01:26.313248 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] Log opened at 2024-03-26 18:01:26.314243 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[42] Log opened at 2024-03-26 18:01:26.314987 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[28] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] Log opened at 2024-03-26 18:01:26.315483 +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] -> + +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[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] -> + +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[26] Log opened at 2024-03-26 18:01:26.315897 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[40] Log opened at 2024-03-26 18:01:26.316261 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[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. +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] -> + +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[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] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [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] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[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] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[47] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[26] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[47] [Step Debug] -> + +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[44] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[47] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[47] [Step Debug] <- run -i 11 +[28] [Step Debug] <- run -i 11 +[42] [Step Debug] <- run -i 11 +[44] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 11 +[40] [Step Debug] <- run -i 11 +[47] [Step Debug] -> + +[47] Log closed at 2024-03-26 18:01:26.814713 + +[47] Log opened at 2024-03-26 18:01:26.817311 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:01:26.845047 + +[40] Log opened at 2024-03-26 18:01:26.846741 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:01:26.876892 + +[26] Log opened at 2024-03-26 18:01:26.879001 +[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] -> + +[47] [Step Debug] <- run -i 11 +[40] [Step Debug] <- run -i 5 +[26] [Step Debug] <- run -i 5 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:01:26.910151 + +[28] Log opened at 2024-03-26 18:01:26.912359 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:01:26.952553 + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[42] Log opened at 2024-03-26 18:01:26.954440 +[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] -> + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:01:26.983995 + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:01:27.111464 + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:01:27.141559 + +[47] [Step Debug] -> + +[47] Log closed at 2024-03-26 18:01:27.170056 + +[48] Log opened at 2024-03-26 18:01:41.646759 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[28] [Step Debug] <- run -i 11 +[42] [Step Debug] <- run -i 11 +[48] [Step Debug] <- run -i 11 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:01:41.782596 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:01:41.977948 + +[48] [Step Debug] -> + +[48] Log closed at 2024-03-26 18:01:43.090879 + +[48] Log opened at 2024-03-26 18:01:43.285612 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[48] [Step Debug] -> + +[43] Log opened at 2024-03-26 18:01:43.294107 +[45] Log opened at 2024-03-26 18:01:43.294075 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[44] Log opened at 2024-03-26 18:01:43.294824 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] Log opened at 2024-03-26 18:01:43.294378 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[45] [Step Debug] -> + +[43] [Step Debug] -> + +[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. +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] -> + +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[49] Log opened at 2024-03-26 18:01:43.295553 +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[49] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[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] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[48] [Step Debug] <- run -i 11 +[44] [Step Debug] <- run -i 5 +[45] [Step Debug] <- run -i 5 +[43] [Step Debug] <- run -i 5 +[32] [Step Debug] <- run -i 5 +[49] [Step Debug] <- run -i 5 +[48] [Step Debug] -> + +[48] Log closed at 2024-03-26 18:01:43.429640 + +[48] Log opened at 2024-03-26 18:01:43.432692 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:01:43.681669 + +[44] Log opened at 2024-03-26 18:01:43.684241 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 18:01:43.711175 + +[45] Log opened at 2024-03-26 18:01:43.712966 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-26 18:01:43.744717 + +[49] Log opened at 2024-03-26 18:01:43.746924 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[49] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[49] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:01:43.815235 + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] Log opened at 2024-03-26 18:01:43.817584 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[49] [Step Debug] -> + +[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'. +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] -> + +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:01:43.845911 + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[26] Log opened at 2024-03-26 18:01:56.285374 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[40] Log opened at 2024-03-26 18:01:56.294916 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[48] [Step Debug] <- run -i 11 +[44] [Step Debug] <- run -i 13 +[45] [Step Debug] <- run -i 13 +[49] [Step Debug] <- run -i 11 +[43] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 11 +[40] [Step Debug] <- run -i 5 +[48] [Step Debug] -> + +[48] Log closed at 2024-03-26 18:01:56.685087 + +[49] [Step Debug] -> + +[49] Log closed at 2024-03-26 18:01:56.710604 + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:01:56.775947 + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:01:56.783657 + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:01:56.805558 + +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 18:01:56.836664 + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:01:57.924781 + +[40] Log opened at 2024-03-26 18:01:58.232173 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[26] Log opened at 2024-03-26 18:01:58.237940 +[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] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[47] Log opened at 2024-03-26 18:01:58.239202 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[47] [Step Debug] -> + +[42] Log opened at 2024-03-26 18:01:58.239900 +[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] -> + +[28] Log opened at 2024-03-26 18:01:58.241379 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] Log opened at 2024-03-26 18:01:58.241756 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[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. +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[26] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[47] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[26] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[47] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[42] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[42] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[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] -> + +[42] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[40] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 10 +[47] [Step Debug] <- run -i 10 +[42] [Step Debug] <- run -i 10 +[28] [Step Debug] <- run -i 5 +[32] [Step Debug] <- run -i 5 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:01:58.378469 + +[40] Log opened at 2024-03-26 18:01:58.381446 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:01:58.623915 + +[32] Log opened at 2024-03-26 18:01:58.626255 +[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] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:01:58.655330 + +[28] Log opened at 2024-03-26 18:01:58.657202 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[28] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:01:58.729605 + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [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] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[26] Log opened at 2024-03-26 18:01:58.732087 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [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 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [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] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:01:58.775786 + +[42] Log opened at 2024-03-26 18:01:58.777799 +[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] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[47] [Step Debug] -> + +[47] Log closed at 2024-03-26 18:01:58.809634 + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[42] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[40] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 13 +[28] [Step Debug] <- run -i 13 +[26] [Step Debug] <- run -i 11 +[42] [Step Debug] <- run -i 11 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:01:59.216600 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:01:59.246545 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:01:59.272897 + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:01:59.300410 + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:01:59.329894 + +[40] Log opened at 2024-03-26 18:01:59.397772 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 11 +[32] Log opened at 2024-03-26 18:01:59.564113 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[28] Log opened at 2024-03-26 18:01:59.585101 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- run -i 11 +[28] [Step Debug] <- run -i 5 +[42] Log opened at 2024-03-26 18:01:59.723635 +[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] -> + +[47] Log opened at 2024-03-26 18:01:59.726309 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:01:59.782012 + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:01:59.903707 + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:01:59.964299 + +[48] Log opened at 2024-03-26 18:02:11.136530 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[42] [Step Debug] <- run -i 13 +[47] [Step Debug] <- run -i 13 +[48] [Step Debug] <- run -i 11 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:02:11.502439 + +[47] [Step Debug] -> + +[47] Log closed at 2024-03-26 18:02:11.577095 + +[48] [Step Debug] -> + +[48] Log closed at 2024-03-26 18:02:11.645538 + +[42] Log opened at 2024-03-26 18:02:11.681389 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 11 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:02:12.028027 + +[42] Log opened at 2024-03-26 18:02:16.979106 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 11 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:02:18.474695 + +[42] Log opened at 2024-03-26 18:02:18.719888 +[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] -> + +[49] Log opened at 2024-03-26 18:02:18.724311 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[44] Log opened at 2024-03-26 18:02:18.724449 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] Log opened at 2024-03-26 18:02:18.724752 +[49] [Step Debug] -> + +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[45] Log opened at 2024-03-26 18:02:18.725599 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[26] Log opened at 2024-03-26 18:02:18.726068 +[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] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[49] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[49] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[44] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[43] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[49] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[44] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[43] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[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] -> + +[49] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[42] [Step Debug] <- run -i 11 +[49] [Step Debug] <- run -i 11 +[44] [Step Debug] <- run -i 11 +[43] [Step Debug] <- run -i 11 +[45] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 11 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:02:18.875282 + +[42] Log opened at 2024-03-26 18:02:18.878588 +[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] <- run -i 5 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:02:19.132211 + +[44] Log opened at 2024-03-26 18:02:19.135033 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 5 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 18:02:19.158202 + +[45] Log opened at 2024-03-26 18:02:19.160138 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- run -i 5 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:02:19.207361 + +[26] Log opened at 2024-03-26 18:02:19.210378 +[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] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:02:19.241034 + +[43] Log opened at 2024-03-26 18:02:19.243036 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 5 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[49] [Step Debug] -> + +[49] Log closed at 2024-03-26 18:02:19.341989 + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:02:19.369113 + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:02:19.430041 + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 18:02:19.583622 + +[32] Log opened at 2024-03-26 18:03:11.096091 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[28] Log opened at 2024-03-26 18:03:11.153268 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[43] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 11 +[28] [Step Debug] <- run -i 5 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:03:11.449626 + +[43] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:03:11.479469 + +[28] Log closed at 2024-03-26 18:03:11.480240 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:03:11.913987 + +[48] Log opened at 2024-03-26 18:03:24.341265 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 11 +[48] [Step Debug] -> + +[48] Log closed at 2024-03-26 18:03:25.757684 + +[48] Log opened at 2024-03-26 18:03:25.992669 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[48] [Step Debug] -> + +[49] Log opened at 2024-03-26 18:03:25.993665 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[49] [Step Debug] -> + +[42] Log opened at 2024-03-26 18:03:25.994260 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [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. +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[44] Log opened at 2024-03-26 18:03:25.994748 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[42] [Step Debug] -> + +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] Log opened at 2024-03-26 18:03:25.995165 +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] -> + +[40] Log opened at 2024-03-26 18:03:25.995423 +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[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] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[49] [Step Debug] -> + +[42] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[48] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[49] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[42] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[49] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[49] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[49] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[49] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[42] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[48] [Step Debug] <- run -i 17 +[49] [Step Debug] <- run -i 17 +[42] [Step Debug] <- run -i 17 +[44] [Step Debug] <- run -i 17 +[45] [Step Debug] <- run -i 17 +[40] [Step Debug] <- run -i 17 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:03:26.471207 + +[44] Log opened at 2024-03-26 18:03:26.473316 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:03:26.509663 + +[40] Log opened at 2024-03-26 18:03:26.511722 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:03:26.539294 + +[42] Log opened at 2024-03-26 18:03:26.540825 +[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] -> + +[44] [Step Debug] <- run -i 11 +[40] [Step Debug] <- run -i 5 +[42] [Step Debug] <- run -i 4 +[48] [Step Debug] -> + +[48] Log closed at 2024-03-26 18:03:26.604577 + +[48] Log opened at 2024-03-26 18:03:26.606420 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[49] Log closed at 2024-03-26 18:03:26.644447 + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[49] Log opened at 2024-03-26 18:03:26.646355 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 18:03:26.696357 + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:03:26.819674 + +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:03:26.846318 + +[44] [Step Debug] -> + +[48] [Step Debug] <- run -i 11 +[49] [Step Debug] <- run -i 11 +[44] Log closed at 2024-03-26 18:03:26.881361 + +[49] [Step Debug] -> + +[49] Log closed at 2024-03-26 18:03:26.928091 + +[48] [Step Debug] -> + +[48] Log closed at 2024-03-26 18:03:27.111328 + +[45] Log opened at 2024-03-26 18:03:27.565102 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[45] [Step Debug] <- run -i 11 +[42] Log opened at 2024-03-26 18:03:27.707655 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[44] Log opened at 2024-03-26 18:03:27.707675 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[42] [Step Debug] -> + +[44] [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] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[40] Log opened at 2024-03-26 18:03:27.745852 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[49] Log opened at 2024-03-26 18:03:27.746081 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] -> + +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[49] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[42] [Step Debug] <- run -i 13 +[44] [Step Debug] <- run -i 13 +[40] [Step Debug] <- run -i 5 +[49] [Step Debug] <- run -i 5 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 18:03:27.921472 + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:03:28.065253 + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:03:28.134353 + +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-26 18:03:28.217529 + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:03:28.302443 + +[45] Log opened at 2024-03-26 18:03:32.398550 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[45] [Step Debug] <- run -i 11 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 18:03:33.857804 + +[45] Log opened at 2024-03-26 18:03:34.128484 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[43] Log opened at 2024-03-26 18:03:34.133245 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[26] Log opened at 2024-03-26 18:03:34.133253 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[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'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[26] [Step Debug] -> + +[28] Log opened at 2024-03-26 18:03:34.134122 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] Log opened at 2024-03-26 18:03:34.133642 +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[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] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[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] -> + +[50] Log opened at 2024-03-26 18:03:34.135787 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[50] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[50] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[28] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[32] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[50] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[32] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[50] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[43] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[50] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[50] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[43] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[45] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[26] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[32] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[32] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[45] [Step Debug] <- run -i 11 +[43] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 11 +[28] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 11 +[50] [Step Debug] <- run -i 11 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 18:03:34.296788 + +[45] Log opened at 2024-03-26 18:03:34.300427 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- run -i 5 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:03:34.600567 + +[26] Log opened at 2024-03-26 18:03:34.602933 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:03:34.638955 + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[32] Log opened at 2024-03-26 18:03:34.640887 +[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] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:03:34.673241 + +[28] Log opened at 2024-03-26 18:03:34.675006 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:03:34.702280 + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [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] -> + +[43] Log opened at 2024-03-26 18:03:34.704479 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[50] [Step Debug] -> + +[50] Log closed at 2024-03-26 18:03:34.741882 + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 18:03:34.782780 + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[48] Log opened at 2024-03-26 18:03:41.638288 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[48] [Step Debug] -> + +[40] Log opened at 2024-03-26 18:03:41.649128 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[48] [Step Debug] -> + +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] -> + +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 13 +[28] [Step Debug] <- run -i 13 +[43] [Step Debug] <- run -i 11 +[48] [Step Debug] <- run -i 11 +[40] [Step Debug] <- run -i 5 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:03:42.031987 + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:03:42.059999 + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:03:42.116397 + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:03:42.147967 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:03:42.176393 + +[48] [Step Debug] -> + +[48] Log closed at 2024-03-26 18:03:43.288029 + +[40] Log opened at 2024-03-26 18:03:43.543159 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[48] Log opened at 2024-03-26 18:03:43.547978 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[48] [Step Debug] -> + +[42] Log opened at 2024-03-26 18:03:43.549080 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [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. +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[49] Log opened at 2024-03-26 18:03:43.549758 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[42] [Step Debug] -> + +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[49] [Step Debug] -> + +[50] Log opened at 2024-03-26 18:03:43.550995 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[44] Log opened at 2024-03-26 18:03:43.550767 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[48] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[49] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[50] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[42] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[49] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[50] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[44] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[42] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[49] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[50] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[44] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[40] [Step Debug] <- run -i 11 +[48] [Step Debug] <- run -i 11 +[42] [Step Debug] <- run -i 11 +[49] [Step Debug] <- run -i 11 +[50] [Step Debug] <- run -i 11 +[44] [Step Debug] <- run -i 11 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:03:43.724813 + +[40] Log opened at 2024-03-26 18:03:43.728376 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 5 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-26 18:03:43.965197 + +[49] Log opened at 2024-03-26 18:03:43.967187 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[48] Log closed at 2024-03-26 18:03:44.034379 + +[48] Log opened at 2024-03-26 18:03:44.037455 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[49] [Step Debug] <- run -i 5 +[48] [Step Debug] <- run -i 4 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:03:44.073084 + +[40] Log opened at 2024-03-26 18:03:44.075295 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 5 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:03:44.110908 + +[44] Log opened at 2024-03-26 18:03:44.113191 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[50] [Step Debug] -> + +[50] Log closed at 2024-03-26 18:03:44.165029 + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:03:44.202635 + +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-26 18:03:44.318574 + +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] Log closed at 2024-03-26 18:03:44.354432 + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:03:44.382899 + +[32] Log opened at 2024-03-26 18:04:16.241284 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[43] Log opened at 2024-03-26 18:04:16.252389 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[44] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 11 +[43] [Step Debug] <- run -i 5 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:04:16.587877 + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:04:16.687471 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:04:17.703286 + +[43] Log opened at 2024-03-26 18:04:18.173855 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[32] Log opened at 2024-03-26 18:04:18.179369 +[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] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[26] Log opened at 2024-03-26 18:04:18.180461 +[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] -> + +[28] Log opened at 2024-03-26 18:04:18.181054 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[50] Log opened at 2024-03-26 18:04:18.181271 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[50] [Step Debug] -> + +[28] [Step Debug] -> + +[42] Log opened at 2024-03-26 18:04:18.181840 +[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] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[32] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[26] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[50] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[28] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[42] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[32] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[26] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[50] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[28] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[42] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[43] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 10 +[26] [Step Debug] <- run -i 10 +[50] [Step Debug] <- run -i 10 +[28] [Step Debug] <- run -i 10 +[42] [Step Debug] <- run -i 10 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:04:18.330129 + +[43] Log opened at 2024-03-26 18:04:18.332552 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 4 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:04:18.615960 + +[42] Log opened at 2024-03-26 18:04:18.618354 +[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] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:04:18.646976 + +[28] Log opened at 2024-03-26 18:04:18.649324 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[42] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:04:18.711647 + +[32] Log opened at 2024-03-26 18:04:18.713630 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[50] [Step Debug] -> + +[50] Log closed at 2024-03-26 18:04:18.746524 + +[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] -> + +[50] Log opened at 2024-03-26 18:04:18.748647 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:04:18.773398 + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[50] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:04:18.803901 + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[42] [Step Debug] <- run -i 11 +[28] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 11 +[50] [Step Debug] <- run -i 11 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:04:19.240755 + +[50] [Step Debug] -> + +[50] Log closed at 2024-03-26 18:04:19.286777 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:04:19.326022 + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:04:19.361846 + +[43] Log opened at 2024-03-26 18:04:19.734168 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 11 +[42] Log opened at 2024-03-26 18:04:20.009523 +[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] -> + +[50] Log opened at 2024-03-26 18:04:20.010313 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[50] [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] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[50] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [Step Debug] -> + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:04:20.091368 + +[42] [Step Debug] <- run -i 13 +[50] [Step Debug] <- run -i 13 +[28] Log opened at 2024-03-26 18:04:20.151044 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[43] Log opened at 2024-03-26 18:04:20.151080 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[43] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[43] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[28] [Step Debug] <- run -i 13 +[43] [Step Debug] <- run -i 13 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:04:20.448165 + +[50] [Step Debug] -> + +[50] Log closed at 2024-03-26 18:04:20.535835 + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:04:20.591230 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:04:20.658292 + +[40] Log opened at 2024-03-26 18:05:21.965980 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 11 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:05:23.456027 + +[40] Log opened at 2024-03-26 18:05:23.905814 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[45] Log opened at 2024-03-26 18:05:23.907583 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[44] Log opened at 2024-03-26 18:05:23.907778 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[26] Log opened at 2024-03-26 18:05:23.908371 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[32] Log opened at 2024-03-26 18:05:23.908672 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[26] [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'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [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: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Step Debug] -> + +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[42] Log opened at 2024-03-26 18:05:23.909037 +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[45] [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. +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[42] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [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] -> + +[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] -> + +[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] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[32] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [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] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[40] [Step Debug] <- run -i 14 +[45] [Step Debug] <- run -i 14 +[44] [Step Debug] <- run -i 14 +[32] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 11 +[42] [Step Debug] <- run -i 11 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:05:24.413587 + +[32] Log opened at 2024-03-26 18:05:24.415839 +[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] <- run -i 5 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 18:05:24.435054 + +[45] Log opened at 2024-03-26 18:05:24.437809 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:05:24.472844 + +[42] Log opened at 2024-03-26 18:05:24.475007 +[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] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 5 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:05:24.539302 + +[40] Log opened at 2024-03-26 18:05:24.541542 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:05:24.571516 + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[44] Log opened at 2024-03-26 18:05:24.573534 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:05:24.602489 + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:05:24.651465 + +[22] Log opened at 2024-03-26 18:05:59.302438 +[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/Cosidotapablanda.php -n 1316 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] Log closed at 2024-03-26 18:06:00.777744 + +[22] Log opened at 2024-03-26 18:06:01.179608 +[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] -> + +[24] Log opened at 2024-03-26 18:06:01.185796 +[23] Log opened at 2024-03-26 18:06:01.185809 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] Log opened at 2024-03-26 18:06:01.186148 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[22] [Step Debug] -> + +[27] Log opened at 2024-03-26 18:06:01.186328 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[25] Log opened at 2024-03-26 18:06:01.186160 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [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'. +[23] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] -> + +[24] [Step Debug] -> + +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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'. +[26] [Step Debug] -> + +[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. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[25] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[25] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [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] -> + +[23] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[23] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[24] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[26] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[27] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[25] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[23] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[24] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[26] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[27] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[25] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[22] [Step Debug] <- run -i 11 +[23] [Step Debug] <- run -i 10 +[24] [Step Debug] <- run -i 10 +[26] [Step Debug] <- run -i 10 +[27] [Step Debug] <- run -i 10 +[25] [Step Debug] <- run -i 10 +[22] [Step Debug] -> + +[22] Log closed at 2024-03-26 18:06:01.329728 + +[22] Log opened at 2024-03-26 18:06:01.332663 +[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/Cosidotapablanda.php -n 1316 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:06:01.557224 + +[25] Log opened at 2024-03-26 18:06:01.559281 +[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] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[25] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:06:01.591519 + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[24] Log opened at 2024-03-26 18:06:01.593943 +[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/Cosidotapablanda.php -n 1316 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:06:01.645067 + +[26] Log opened at 2024-03-26 18:06:01.647132 +[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] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 18:06:01.694097 + +[27] Log opened at 2024-03-26 18:06:01.697234 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[27] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:06:01.774653 + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[40] Log opened at 2024-03-26 18:07:41.003387 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[22] [Step Debug] <- run -i 11 +[25] [Step Debug] <- run -i 11 +[24] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 11 +[27] [Step Debug] <- run -i 11 +[40] [Step Debug] <- run -i 11 +[40] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-03-26 18:07:41.327188 + +[40] [Step Debug] <- stack_get -i 12 +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 13 +[40] [Step Debug] -> + +[40] [Step Debug] <- stack_get -i 14 +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 15 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:07:50.212207 + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 18:07:50.245672 + +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:07:50.280127 + +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:07:50.311637 + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:07:50.345016 + +[40] Log opened at 2024-03-26 18:07:50.381190 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 11 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:07:50.527569 + +[40] Log opened at 2024-03-26 18:07:50.665590 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 11 +[41] Log opened at 2024-03-26 18:07:50.767456 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 11 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:07:50.931067 + +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:07:51.066653 + +[40] Log opened at 2024-03-26 18:07:54.723756 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 11 +[40] [Step Debug] -> + +[40] Log closed at 2024-03-26 18:07:55.112553 + +[41] Log opened at 2024-03-26 18:07:55.291182 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 11 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:07:55.415137 + +[41] Log opened at 2024-03-26 18:07:55.417089 +[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] -> + +[22] Log opened at 2024-03-26 18:07:55.418601 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[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] -> + +[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] Log opened at 2024-03-26 18:07:55.418983 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] -> + +[39] Log opened at 2024-03-26 18:07:55.419319 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[28] Log opened at 2024-03-26 18:07:55.419646 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[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. +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] -> + +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[39] [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] <- 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] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[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] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[22] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[39] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[22] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[39] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [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] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[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" +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[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] -> + +[41] [Step Debug] <- run -i 11 +[22] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 11 +[28] [Step Debug] <- run -i 11 +[39] [Step Debug] <- run -i 11 +[27] Log opened at 2024-03-26 18:07:55.685102 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 11 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:07:55.754353 + +[22] [Step Debug] -> + +[22] Log closed at 2024-03-26 18:07:55.779925 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:07:55.825769 + +[41] Log opened at 2024-03-26 18:07:55.843603 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:07:55.869017 + +[39] [Step Debug] -> + +[39] Log closed at 2024-03-26 18:07:55.890474 + +[41] [Step Debug] <- run -i 11 +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 18:07:55.924894 + +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:07:56.202010 + +[27] Log opened at 2024-03-26 18:07:56.209765 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] Log opened at 2024-03-26 18:07:56.210214 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[27] [Step Debug] -> + +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] Log opened at 2024-03-26 18:07:56.210168 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[41] [Step Debug] -> + +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] Log opened at 2024-03-26 18:07:56.210499 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [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] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[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] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[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] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[27] [Step Debug] -> + +[41] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[22] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[41] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[22] [Step Debug] -> + +[28] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[22] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [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] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[22] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[41] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[41] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[22] [Step Debug] -> + +[28] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[22] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[27] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[41] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[22] [Step Debug] -> + +[27] [Step Debug] <- run -i 17 +[41] [Step Debug] <- run -i 17 +[28] [Step Debug] <- run -i 17 +[22] [Step Debug] <- run -i 17 +[22] [Step Debug] -> + +[22] Log closed at 2024-03-26 18:07:56.602777 + +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:07:56.699949 + +[27] [Step Debug] -> + +[27] Log closed at 2024-03-26 18:07:56.803117 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:07:56.922288 + +[28] Log opened at 2024-03-26 18:08:00.771386 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 11 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:08:01.212578 + +[28] Log opened at 2024-03-26 18:08:01.379598 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 11 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:08:01.512206 + +[23] Log opened at 2024-03-26 18:08:01.851971 +[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/Cosidotapablanda.php -n 1316 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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 +[28] Log opened at 2024-03-26 18:08:02.094996 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:08:02.099980 + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 11 +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:08:02.471825 + +[22] Log opened at 2024-03-26 18:08:09.875169 +[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/Cosidotapablanda.php -n 1316 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] Log closed at 2024-03-26 18:08:11.327570 + +[22] Log opened at 2024-03-26 18:08:11.506571 +[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/Cosidotapablanda.php -n 1316 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[32] Log opened at 2024-03-26 18:08:11.518807 +[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] -> + +[39] Log opened at 2024-03-26 18:08:11.519670 +[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] -> + +[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] -> + +[41] Log opened at 2024-03-26 18:08:11.521771 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] Log opened at 2024-03-26 18:08:11.521951 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[41] [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. +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] -> + +[25] Log opened at 2024-03-26 18:08:11.522943 +[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] -> + +[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] -> + +[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] -> + +[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] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [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] -> + +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [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] -> + +[22] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 5 +[39] [Step Debug] <- run -i 5 +[41] [Step Debug] <- run -i 5 +[26] [Step Debug] <- run -i 5 +[25] [Step Debug] <- run -i 5 +[22] [Step Debug] -> + +[22] Log closed at 2024-03-26 18:08:11.631381 + +[22] Log opened at 2024-03-26 18:08:11.634444 +[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/Cosidotapablanda.php -n 1316 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[39] [Step Debug] -> + +[39] Log closed at 2024-03-26 18:08:11.842892 + +[39] Log opened at 2024-03-26 18:08:11.845231 +[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/Cosidotapablanda.php -n 1316 +[39] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:08:11.886519 + +[26] Log opened at 2024-03-26 18:08:11.888544 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] -> + +[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. +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[39] [Step Debug] -> + +[26] [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] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:08:11.970075 + +[32] Log opened at 2024-03-26 18:08:11.972125 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [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] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:08:12.010379 + +[41] Log opened at 2024-03-26 18:08:12.012990 +[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] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[41] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[32] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[32] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:08:12.052444 + +[24] Log opened at 2024-03-26 18:13:15.118781 +[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/Cosidotapablanda.php -n 1316 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[23] Log opened at 2024-03-26 18:13:15.128715 +[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 11 +[39] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 11 +[41] [Step Debug] <- run -i 11 +[24] [Step Debug] <- run -i 11 +[23] [Step Debug] <- run -i 5 +[22] [Step Debug] -> + +[32] [Step Debug] -> + +[22] Log closed at 2024-03-26 18:13:15.473034 + +[32] Log closed at 2024-03-26 18:13:15.474124 + +[39] [Step Debug] -> + +[39] Log closed at 2024-03-26 18:13:15.507037 + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:13:15.579704 + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:13:15.607844 + +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:13:15.609960 + +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:13:16.759291 + +[23] Log opened at 2024-03-26 18:13:16.950266 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[24] Log opened at 2024-03-26 18:13:16.950433 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[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). +[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'. +[23] [Step Debug] -> + +[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] -> + +[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] -> + +[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] -> + +[28] Log opened at 2024-03-26 18:13:16.952366 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] Log opened at 2024-03-26 18:13:16.953257 +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[23] [Step Debug] -> + +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [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. +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[25] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[25] [Step Debug] -> + +[42] Log opened at 2024-03-26 18:13:16.953699 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[34] Log opened at 2024-03-26 18:13:16.953921 +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[23] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [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] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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. +[42] [Step Debug] -> + +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[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] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [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] -> + +[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] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[23] [Step Debug] -> + +[24] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[25] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[34] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[25] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[25] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [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] -> + +[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] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[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] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[23] [Step Debug] -> + +[24] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[25] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[23] [Step Debug] <- run -i 14 +[24] [Step Debug] <- run -i 14 +[28] [Step Debug] <- run -i 14 +[25] [Step Debug] <- run -i 14 +[42] [Step Debug] <- run -i 13 +[34] [Step Debug] <- run -i 13 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:13:17.368231 + +[25] Log opened at 2024-03-26 18:13:17.370536 +[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] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:13:17.404736 + +[34] Log opened at 2024-03-26 18:13:17.406965 +[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] -> + +[25] [Step Debug] <- run -i 11 +[34] [Step Debug] <- run -i 5 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:13:17.442339 + +[42] Log opened at 2024-03-26 18:13:17.444453 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:13:17.489599 + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[28] Log opened at 2024-03-26 18:13:17.491967 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[28] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:13:17.558784 + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[23] Log opened at 2024-03-26 18:13:17.560869 +[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/Cosidotapablanda.php -n 1316 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:13:17.593254 + +[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] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:13:17.692847 + +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:13:17.729729 + +[32] Log opened at 2024-03-26 18:13:24.391553 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[42] [Step Debug] <- run -i 11 +[28] [Step Debug] <- run -i 11 +[23] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 11 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:13:24.511138 + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:13:24.736778 + +[28] [Step Debug] -> + +[28] Log closed at 2024-03-26 18:13:24.790580 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:13:25.938287 + +[32] Log opened at 2024-03-26 18:13:26.254230 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[41] Log opened at 2024-03-26 18:13:26.307109 +[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] -> + +[39] Log opened at 2024-03-26 18:13:26.309178 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] -> + +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[41] [Step Debug] -> + +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[39] [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] -> + +[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] -> + +[24] Log opened at 2024-03-26 18:13:26.312318 +[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. +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[24] [Step Debug] -> + +[32] [Step Debug] <- run -i 11 +[41] [Step Debug] <- run -i 5 +[39] [Step Debug] <- run -i 4 +[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-03-26 18:13:26.325319 +[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] -> + +[26] Log opened at 2024-03-26 18:13:26.336529 +[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] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[24] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[34] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:13:26.371436 + +[32] Log opened at 2024-03-26 18:13:26.374375 +[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] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [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] -> + +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] Log closed at 2024-03-26 18:13:26.555339 + +[39] Log opened at 2024-03-26 18:13:26.557818 +[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] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:13:26.632953 + +[41] Log opened at 2024-03-26 18:13:26.635951 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[24] [Step Debug] <- run -i 17 +[34] [Step Debug] <- run -i 17 +[26] [Step Debug] <- run -i 17 +[32] [Step Debug] <- run -i 11 +[39] [Step Debug] <- run -i 11 +[41] [Step Debug] <- run -i 11 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:13:27.096282 + +[24] Log opened at 2024-03-26 18:13:27.098858 +[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/Cosidotapablanda.php -n 1316 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:13:27.128637 + +[34] Log opened at 2024-03-26 18:13:27.130451 +[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] -> + +[24] [Step Debug] <- run -i 11 +[34] [Step Debug] <- run -i 5 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:13:27.167527 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:13:27.202983 + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:13:27.243514 + +[39] [Step Debug] -> + +[39] Log closed at 2024-03-26 18:13:27.276417 + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:13:27.418713 + +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:13:27.483046 + +[34] Log opened at 2024-03-26 18:13:28.206818 +[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/Cosidotapablanda.php -n 1316 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[26] Log opened at 2024-03-26 18:13:28.232698 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[24] Log opened at 2024-03-26 18:13:28.232817 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[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. +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[24] [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] -> + +[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] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[34] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 5 +[24] [Step Debug] <- run -i 5 +[41] Log opened at 2024-03-26 18:13:28.326794 +[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] -> + +[39] Log opened at 2024-03-26 18:13:28.334311 +[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/Cosidotapablanda.php -n 1316 +[39] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[39] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[39] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[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] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[39] [Step Debug] -> + +[41] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:13:28.565928 + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:13:28.657353 + +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:13:28.659489 + +[22] Log opened at 2024-03-26 18:13:49.369120 +[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/Cosidotapablanda.php -n 1316 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[41] [Step Debug] <- run -i 13 +[39] [Step Debug] <- run -i 13 +[22] [Step Debug] <- run -i 11 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:13:49.697207 + +[22] [Step Debug] -> + +[22] Log closed at 2024-03-26 18:13:49.843522 + +[39] [Step Debug] -> + +[39] Log closed at 2024-03-26 18:13:49.902608 + +[41] Log opened at 2024-03-26 18:13:50.305623 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 11 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:13:50.419177 + +[41] Log opened at 2024-03-26 18:13:50.937016 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 11 +[39] Log opened at 2024-03-26 18:13:51.147344 +[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/Cosidotapablanda.php -n 1316 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:13:51.233401 + +[39] [Step Debug] -> + +[39] Log closed at 2024-03-26 18:13:51.483814 + +[41] Log opened at 2024-03-26 18:13:55.741257 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 11 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:13:56.464679 + +[41] Log opened at 2024-03-26 18:13:56.666504 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 11 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:13:56.783240 + +[41] Log opened at 2024-03-26 18:13:57.052636 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 11 +[23] Log opened at 2024-03-26 18:13:57.249570 +[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/Cosidotapablanda.php -n 1316 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[42] Log opened at 2024-03-26 18:13:57.275471 +[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] -> + +[23] [Step Debug] <- run -i 11 +[42] [Step Debug] <- run -i 5 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:13:57.317948 + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:13:57.572105 + +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:13:57.621157 + +[32] Log opened at 2024-03-26 18:14:04.067644 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[32] [Step Debug] <- run -i 11 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:14:04.442255 + +[32] Log opened at 2024-03-26 18:14:04.495478 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[32] [Step Debug] <- run -i 11 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:14:04.827263 + +[32] Log opened at 2024-03-26 18:14:09.229846 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[32] [Step Debug] <- run -i 11 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:14:10.642023 + +[32] Log opened at 2024-03-26 18:14:10.886015 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[34] Log opened at 2024-03-26 18:14:10.913770 +[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. +[24] Log opened at 2024-03-26 18:14:10.913770 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [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] -> + +[26] Log opened at 2024-03-26 18:14:10.914857 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[25] Log opened at 2024-03-26 18:14:10.915340 +[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'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[25] [Step Debug] -> + +[26] [Step Debug] -> + +[22] Log opened at 2024-03-26 18:14:10.915972 +[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'. +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[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. +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [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] -> + +[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] -> + +[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] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[32] [Step Debug] <- run -i 11 +[34] [Step Debug] <- run -i 5 +[24] [Step Debug] <- run -i 5 +[25] [Step Debug] <- run -i 5 +[26] [Step Debug] <- run -i 5 +[22] [Step Debug] <- run -i 5 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:14:11.016179 + +[32] Log opened at 2024-03-26 18:14:11.019284 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[22] [Step Debug] -> + +[22] Log closed at 2024-03-26 18:14:11.235373 + +[22] Log opened at 2024-03-26 18:14:11.237377 +[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/Cosidotapablanda.php -n 1316 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:14:11.300902 + +[24] Log opened at 2024-03-26 18:14:11.303043 +[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] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:14:11.334441 + +[25] Log opened at 2024-03-26 18:14:11.336272 +[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] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[24] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[25] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [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] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:14:11.372427 + +[26] Log opened at 2024-03-26 18:14:11.374763 +[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] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:14:11.402512 + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[32] [Step Debug] <- run -i 11 +[22] [Step Debug] <- run -i 11 +[24] [Step Debug] <- run -i 11 +[25] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 11 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:14:11.741160 + +[22] [Step Debug] -> + +[22] Log closed at 2024-03-26 18:14:11.774231 + +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:14:11.806501 + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:14:11.874888 + +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:14:11.892138 + +[22] Log opened at 2024-03-26 18:14:12.066927 +[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/Cosidotapablanda.php -n 1316 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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 +[25] Log opened at 2024-03-26 18:14:12.279301 +[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] Log opened at 2024-03-26 18:14:12.282811 +[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] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[25] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[26] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[25] [Step Debug] <- run -i 11 +[26] [Step Debug] <- run -i 11 +[24] Log opened at 2024-03-26 18:14:12.423134 +[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] -> + +[34] Log opened at 2024-03-26 18:14:12.426216 +[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] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [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] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[24] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-03-26 18:14:12.491080 + +[24] [Step Debug] <- run -i 13 +[34] [Step Debug] <- run -i 13 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:14:12.661533 + +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:14:12.735819 + +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:14:12.942779 + +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:14:12.999231 + +[41] Log opened at 2024-03-26 18:16:48.567480 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 366 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1316 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 12 +[41] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 13 +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 17 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 19 -n "$servicios->serviciosAcabado" -p 0 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 20 -n "$servicios->serviciosAcabado[0]" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 21 -n "$presupuestoEntity" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 22 -n "$this->getServiciosManipulado" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_remove -i 23 -d 410079 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_remove -i 24 -d 410080 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[41] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[41] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 27 -n "$presupuestoEntity" -d 0 -c 0 +[41] [Step Debug] -> + +[32] Log opened at 2024-03-26 18:20:27.828722 +[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] -> + +[41] [Step Debug] <- breakpoint_remove -i 28 -d 410086 +[41] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 12 +[25] Log opened at 2024-03-26 18:20:43.162534 +[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] -> + +[41] [Step Debug] <- breakpoint_remove -i 29 -d 410086 +[41] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 12 +[41] [Step Debug] <- run -i 30 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:20:48.863210 + +[32] [Step Debug] -> + +[25] [Step Debug] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:20:49.018076 + +[24] Log opened at 2024-03-26 18:20:49.121345 +[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] -> + +[42] Log opened at 2024-03-26 18:20:49.126874 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[34] Log opened at 2024-03-26 18:20:49.126932 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[23] Log opened at 2024-03-26 18:20:49.127194 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[42] [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'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[42] [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). +[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'. +[42] [Step Debug] -> + +[34] [Step Debug] -> + +[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] -> + +[43] Log opened at 2024-03-26 18:20:49.128377 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[24] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [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] -> + +[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] -> + +[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] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[24] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[42] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[43] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[24] [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] <- 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] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[23] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[23] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[34] [Step Debug] <- run -i 10 +[42] [Step Debug] <- run -i 10 +[23] [Step Debug] <- run -i 10 +[43] [Step Debug] <- run -i 10 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:20:49.282210 + +[24] Log opened at 2024-03-26 18:20:49.284817 +[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] <- run -i 5 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:20:49.435160 + +[25] Log opened at 2024-03-26 18:20:49.438675 +[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] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:20:49.533452 + +[43] Log opened at 2024-03-26 18:20:49.535552 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:20:49.565343 + +[42] Log opened at 2024-03-26 18:20:49.568152 +[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] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[43] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[42] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:20:49.601055 + +[23] Log opened at 2024-03-26 18:20:49.603262 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [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. +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[42] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[43] [Step Debug] -> + +[23] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [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/Cosidotapablanda.php -n 365 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[23] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:20:49.699019 + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[34] Log opened at 2024-03-26 18:20:49.700802 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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" +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] -> + +[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] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:20:49.750218 + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[25] [Step Debug] <- run -i 14 +[43] [Step Debug] <- run -i 14 +[42] [Step Debug] <- run -i 14 +[23] [Step Debug] <- run -i 12 +[34] [Step Debug] <- run -i 12 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:20:50.078710 + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:20:50.110970 + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:20:50.143073 + +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:20:50.175883 + +[24] Log opened at 2024-03-26 18:20:50.184980 +[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/Cosidotapablanda.php -n 365 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:20:50.211405 + +[24] [Step Debug] <- run -i 12 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:20:50.328404 + +[34] Log opened at 2024-03-26 18:20:50.638556 +[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/Cosidotapablanda.php -n 365 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 12 +[23] Log opened at 2024-03-26 18:20:50.841699 +[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/Cosidotapablanda.php -n 365 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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 +[42] Log opened at 2024-03-26 18:20:51.000809 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 12 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:20:51.113083 + +[34] Log opened at 2024-03-26 18:20:51.143497 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[43] Log opened at 2024-03-26 18:20:51.143664 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[24] Log opened at 2024-03-26 18:20:51.143684 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[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. +[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. +[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. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[43] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[24] [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] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[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] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[34] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[43] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[24] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[23] [Step Debug] -> + +[34] [Step Debug] <- run -i 14 +[43] [Step Debug] <- run -i 14 +[24] [Step Debug] <- run -i 14 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:20:51.287505 + +[42] [Step Debug] -> + +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:20:51.404760 + +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:20:51.487953 + +[43] [Step Debug] -> + +[23] Log opened at 2024-03-26 18:20:51.547817 +[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/Cosidotapablanda.php -n 365 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[23] [Step Debug] -> + +[42] Log opened at 2024-03-26 18:20:51.553804 +[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] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[42] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[42] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[23] [Step Debug] -> + +[42] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:20:51.565445 + +[34] [Step Debug] -> + +[23] [Step Debug] <- run -i 12 +[42] [Step Debug] <- run -i 10 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:20:51.645253 + +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:20:51.889949 + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[42] [Step Debug] -> + +[42] Log closed at 2024-03-26 18:20:51.928916 + +[26] Log opened at 2024-03-26 18:21:01.949303 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 12 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:21:02.407250 + +[41] Log opened at 2024-03-26 18:21:02.569740 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 12 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:21:02.719518 + +[41] Log opened at 2024-03-26 18:21:02.960738 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 12 +[26] Log opened at 2024-03-26 18:21:03.145176 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 12 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:21:03.233836 + +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:21:03.495899 + +[32] Log opened at 2024-03-26 18:21:14.278471 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 12 +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:21:15.007717 + +[32] Log opened at 2024-03-26 18:21:15.163864 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 12 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:21:15.291337 + +[44] Log opened at 2024-03-26 18:21:15.555855 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 12 +[32] Log opened at 2024-03-26 18:21:15.784401 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[25] Log opened at 2024-03-26 18:21:15.817917 +[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] -> + +[24] Log opened at 2024-03-26 18:21:15.833049 +[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] -> + +[32] [Step Debug] <- run -i 12 +[25] [Step Debug] <- run -i 5 +[24] [Step Debug] <- run -i 5 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:21:15.884254 + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:21:16.230808 + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:21:16.271576 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:21:16.314470 + +[44] Log opened at 2024-03-26 18:21:19.492779 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 12 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:21:19.876638 + +[43] Log opened at 2024-03-26 18:21:30.884465 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 12 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:21:31.264623 + +[43] Log opened at 2024-03-26 18:21:31.316164 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 12 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:21:31.693165 + +[43] Log opened at 2024-03-26 18:21:34.743149 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 12 +[43] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- stack_get -i 13 +[43] [Step Debug] -> + +[43] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[43] [Step Debug] -> + +[43] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[43] [Step Debug] -> + +[43] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[43] [Step Debug] -> + +[43] [Step Debug] <- context_names -i 17 -d 0 +[43] [Step Debug] -> + +[43] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_remove -i 19 -d 430034 +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 20 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:21:40.213165 + +[23] Log opened at 2024-03-26 18:21:40.615374 +[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/Cosidotapablanda.php -n 1280 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] Log closed at 2024-03-26 18:21:40.990926 + +[41] Log opened at 2024-03-26 18:22:05.678505 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 12 +[41] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 13 +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 17 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 19 -n "$this->viewData" -p 0 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 20 -n "$this->viewData[\"serviciosAcabado\"]" -p 0 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 21 -n "$this->viewData[\"serviciosAcabado\"][0]" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 22 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:22:40.628098 + +[24] Log opened at 2024-03-26 18:23:19.358891 +[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/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.php -n 94 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 365 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1280 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 13 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 14 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 17 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 18 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 20 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 23 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 25 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 27 -n "$serviciosAcabado" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 28 -n "$item" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 29 -n "$serviciosAcabado" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_remove -i 30 -d 240069 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 31 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:23:52.007465 + +[25] Log opened at 2024-03-26 18:25:26.866262 +[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] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 367 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 12 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- stack_get -i 13 +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[25] [Step Debug] -> + +[25] [Step Debug] <- context_names -i 17 -d 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 19 -d 250050 +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 20 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:25:40.048114 + +[25] Log opened at 2024-03-26 18:25:40.277078 +[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] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[25] [Step Debug] -> + +[44] Log opened at 2024-03-26 18:25:40.284852 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[32] Log opened at 2024-03-26 18:25:40.284856 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] Log opened at 2024-03-26 18:25:40.285250 +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[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. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[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. +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Step Debug] -> + +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[43] Log opened at 2024-03-26 18:25:40.285800 +[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. +[23] Log opened at 2024-03-26 18:25:40.286273 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [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] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[34] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[34] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[34] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[44] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[32] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[34] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[43] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[44] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[32] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[34] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[43] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[43] [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] -> + +[25] [Step Debug] <- run -i 11 +[44] [Step Debug] <- run -i 10 +[32] [Step Debug] <- run -i 10 +[34] [Step Debug] <- run -i 10 +[43] [Step Debug] <- run -i 10 +[23] [Step Debug] <- run -i 5 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:25:40.480800 + +[25] Log opened at 2024-03-26 18:25:40.483399 +[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] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:25:40.683184 + +[23] Log opened at 2024-03-26 18:25:40.685936 +[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/Cosidotapablanda.php -n 1317 +[23] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:25:40.753605 + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[32] Log opened at 2024-03-26 18:25:40.755486 +[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] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:25:40.787170 + +[44] Log opened at 2024-03-26 18:25:40.789376 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[32] [Step Debug] -> + +[44] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:25:40.820613 + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[34] Log opened at 2024-03-26 18:25:40.822759 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] -> + +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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" +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[34] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [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] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:25:40.867423 + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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] -> + +[25] [Step Debug] <- run -i 11 +[23] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 13 +[44] [Step Debug] <- run -i 13 +[34] [Step Debug] <- run -i 11 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:25:41.258625 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:25:41.289952 + +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:25:41.322098 + +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:25:41.354871 + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:25:41.383220 + +[23] Log opened at 2024-03-26 18:25:41.584792 +[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/Cosidotapablanda.php -n 1317 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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 +[43] Log opened at 2024-03-26 18:25:41.777205 +[34] Log opened at 2024-03-26 18:25:41.777221 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[43] [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'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [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. +[43] [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). +[43] [Step Debug] -> + +[34] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[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] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[43] [Step Debug] -> + +[34] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[43] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[43] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[34] [Step Debug] -> + +[43] [Step Debug] <- run -i 11 +[34] [Step Debug] <- run -i 11 +[32] Log opened at 2024-03-26 18:25:41.883284 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[44] Log opened at 2024-03-26 18:25:41.883534 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[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. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Step Debug] -> + +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [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] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[32] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[44] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[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] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:25:41.959603 + +[32] [Step Debug] <- run -i 13 +[44] [Step Debug] <- run -i 13 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:25:42.184695 + +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:25:42.273214 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:25:42.331958 + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:25:42.390130 + +[26] Log opened at 2024-03-26 18:26:15.567432 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:26:15.948600 + +[26] Log opened at 2024-03-26 18:26:15.997324 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:26:16.392184 + +[26] Log opened at 2024-03-26 18:26:19.394249 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:26:20.828917 + +[26] Log opened at 2024-03-26 18:26:21.071986 +[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] -> + +[25] Log opened at 2024-03-26 18:26:21.077300 +[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. +[24] Log opened at 2024-03-26 18:26:21.077114 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[25] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[25] [Step Debug] -> + +[26] [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). +[45] Log opened at 2024-03-26 18:26:21.078022 +[24] [Step Debug] -> + +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[23] Log opened at 2024-03-26 18:26:21.078488 +[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. +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] -> + +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[34] Log opened at 2024-03-26 18:26:21.079071 +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[45] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[45] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[23] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[23] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[23] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[45] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[45] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[45] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[25] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[24] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[23] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[45] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[25] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[24] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[23] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[45] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[34] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[25] [Step Debug] <- run -i 10 +[24] [Step Debug] <- run -i 10 +[23] [Step Debug] <- run -i 10 +[45] [Step Debug] <- run -i 10 +[34] [Step Debug] <- run -i 10 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:26:21.213007 + +[26] Log opened at 2024-03-26 18:26:21.216183 +[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] -> + +[26] [Step Debug] <- run -i 5 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:26:21.518434 + +[24] Log opened at 2024-03-26 18:26:21.520381 +[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] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:26:21.554180 + +[34] Log opened at 2024-03-26 18:26:21.557707 +[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] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[24] [Step Debug] -> + +[34] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:26:21.594676 + +[25] Log opened at 2024-03-26 18:26:21.596571 +[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] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[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] -> + +[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] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [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] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:26:21.627345 + +[23] Log opened at 2024-03-26 18:26:21.629673 +[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] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[25] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[23] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 18:26:21.659236 + +[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[23] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[25] [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] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:26:21.689291 + +[32] Log opened at 2024-03-26 18:26:32.562798 +[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] -> + +[44] Log opened at 2024-03-26 18:26:32.566328 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[32] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[44] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [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] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[24] [Step Debug] <- run -i 13 +[34] [Step Debug] <- run -i 13 +[25] [Step Debug] <- run -i 11 +[23] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 11 +[44] [Step Debug] <- run -i 11 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:26:32.932568 + +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:26:32.962476 + +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:26:32.992354 + +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:26:33.032533 + +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:26:33.033761 + +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:26:34.176237 + +[44] Log opened at 2024-03-26 18:26:34.393015 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[46] Log opened at 2024-03-26 18:26:34.468773 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[46] [Step Debug] -> + +[45] Log opened at 2024-03-26 18:26:34.471340 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[46] [Step Debug] -> + +[26] Log opened at 2024-03-26 18:26:34.472322 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[32] Log opened at 2024-03-26 18:26:34.472340 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[26] [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'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [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). +[41] Log opened at 2024-03-26 18:26:34.472822 +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[26] [Step Debug] -> + +[32] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[41] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[32] [Step Debug] <- 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] -> + +[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] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[44] [Step Debug] <- run -i 11 +[46] [Step Debug] <- run -i 5 +[45] [Step Debug] <- run -i 5 +[26] [Step Debug] <- run -i 5 +[32] [Step Debug] <- run -i 5 +[41] [Step Debug] <- run -i 5 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-26 18:26:34.579637 + +[44] Log opened at 2024-03-26 18:26:34.582506 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-26 18:26:34.822130 + +[41] Log opened at 2024-03-26 18:26:34.824278 +[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/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[41] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-26 18:26:34.852158 + +[32] Log opened at 2024-03-26 18:26:34.853980 +[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] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[41] [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] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[26] [Step Debug] -> + +[26] Log closed at 2024-03-26 18:26:34.890207 + +[26] Log opened at 2024-03-26 18:26:34.891911 +[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] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-26 18:26:34.916730 + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[32] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[26] [Step Debug] -> + +[45] Log opened at 2024-03-26 18:26:34.918622 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[45] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[32] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[26] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[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] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[45] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[45] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[46] [Step Debug] -> + +[46] Log closed at 2024-03-26 18:26:34.983207 + +[44] [Step Debug] <- stop -i 11 +[44] [Step Debug] -> + +[41] [Step Debug] <- stop -i 11 +[41] [Step Debug] -> + +[32] [Step Debug] <- stop -i 11 +[32] [Step Debug] -> + +[26] [Step Debug] <- stop -i 11 +[26] [Step Debug] -> + +[45] [Step Debug] <- stop -i 11 +[45] [Step Debug] -> + +[43] Log opened at 2024-03-26 18:26:44.431389 +[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. +[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). +[24] Log opened at 2024-03-26 18:26:44.491212 +[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] Log opened at 2024-03-26 18:26:44.509907 +[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. +[34] Log opened at 2024-03-26 18:26:44.529683 +[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. +[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). +[23] Log opened at 2024-03-26 18:26:44.551229 +[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. +[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). +[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). +[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. +[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. +[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. +[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-03-26 18:26:44.823306 + +[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. +[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. +[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-03-26 18:26:44.901740 + +[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. +[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. +[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-03-26 18:26:44.984979 + +[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. +[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. +[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-03-26 18:26:45.077560 + +[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-03-26 18:26:45.144416 + +[24] Log opened at 2024-03-26 18:26:45.254658 +[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-03-26 18:26:45.795141 + +[23] Log opened at 2024-03-26 18:26:45.826838 +[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. +[24] Log opened at 2024-03-26 18:26:45.830871 +[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). +[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). +[34] Log opened at 2024-03-26 18:26:45.983203 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[43] Log opened at 2024-03-26 18:26:45.983270 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[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. +[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. +[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. +[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. +[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). +[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). +[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-03-26 18:26:46.289004 + +[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. +[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. +[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-03-26 18:26:46.450247 + +[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. +[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. +[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-03-26 18:26:46.545023 + +[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. +[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-03-26 18:26:46.656569 + +[50] Log opened at 2024-03-26 18:31:59.757861 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-03-26 18:32:00.301177 + +[50] Log opened at 2024-03-26 18:32:00.502958 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-03-26 18:32:00.708907 + +[23] Log opened at 2024-03-26 18:32:01.410378 +[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). +[49] Log opened at 2024-03-26 18:32:01.622634 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging 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] ERR: Could not connect to debugging 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-03-26 18:32:01.740164 + +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-03-26 18:32:02.089844 + +[49] Log opened at 2024-03-26 18:32:05.912867 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-03-26 18:32:06.653678 + +[49] Log opened at 2024-03-26 18:32:06.829937 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-03-26 18:32:07.055216 + +[49] Log opened at 2024-03-26 18:32:07.342949 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging 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-03-26 18:32:07.583834 +[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. +[51] Log opened at 2024-03-26 18:32:07.591856 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-26 18:32:07.605963 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging 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. +[49] [Step Debug] ERR: Could not connect to debugging 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] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-03-26 18:32:07.706935 + +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-03-26 18:32:08.448673 + +[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). +[25] Log closed at 2024-03-26 18:32:08.555107 + +[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-03-26 18:32:08.647151 + +[53] Log opened at 2024-03-26 18:32:20.017770 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-03-26 18:32:20.488050 + +[53] Log opened at 2024-03-26 18:32:20.518202 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-03-26 18:32:21.234387 + +[53] Log opened at 2024-03-26 18:32:21.260243 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] Log opened at 2024-03-26 18:32:21.268941 +[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. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging 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] 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). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-03-26 18:32:21.696379 + +[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. +[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. +[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-03-26 18:32:21.843990 + +[43] Log opened at 2024-03-26 18:32:24.982680 +[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. +[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. +[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. +[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. +[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-03-26 18:32:25.866540 + +[53] Log opened at 2024-03-26 18:32:26.054782 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-03-26 18:32:26.530011 + +[52] Log opened at 2024-03-26 18:32:46.102115 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:32:46.957032 + +[50] Log opened at 2024-03-26 18:33:03.126942 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 342 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 13 +[50] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 14 +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 17 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 18 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_remove -i 20 -d 500002 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_remove -i 21 -d 500003 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 22 -n "$new_linea[\"fields\"]" -p 0 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 23 -n "$new_linea" -d 0 -c 0 +[50] [Step Debug] -> + +[23] Log opened at 2024-03-26 18:35:41.375102 +[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/Cosidotapablanda.php -n 1317 +[23] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_remove -i 24 -d 500003 +[50] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[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 +[50] [Step Debug] <- run -i 25 +[50] [Step Debug] -> + +[50] Log closed at 2024-03-26 18:35:56.267988 + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 13 +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 17 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 19 -n "$new_linea[\"fields\"]" -p 0 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 20 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:36:03.467748 + +[23] Log opened at 2024-03-26 18:36:03.749765 +[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] -> + +[49] Log opened at 2024-03-26 18:36:03.752203 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[51] Log opened at 2024-03-26 18:36:03.752504 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[49] [Step Debug] -> + +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[25] Log opened at 2024-03-26 18:36:03.752744 +[51] [Step Debug] -> + +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[43] Log opened at 2024-03-26 18:36:03.752969 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[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'. +[24] Log opened at 2024-03-26 18:36:03.752954 +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[25] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[25] [Step Debug] -> + +[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. +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] -> + +[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] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [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] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[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] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[23] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[49] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[51] [Step Debug] -> + +[25] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[43] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[24] [Step Debug] -> + +[23] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[49] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[51] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[25] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[43] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[24] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[51] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[51] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[51] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[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] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[23] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[23] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[51] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[49] [Step Debug] -> + +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[51] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[23] [Step Debug] <- run -i 14 +[49] [Step Debug] <- run -i 14 +[51] [Step Debug] <- run -i 14 +[25] [Step Debug] <- run -i 14 +[43] [Step Debug] <- run -i 14 +[24] [Step Debug] <- run -i 14 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:36:04.211183 + +[43] Log opened at 2024-03-26 18:36:04.213249 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 5 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:36:04.302984 + +[24] Log opened at 2024-03-26 18:36:04.309154 +[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] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:36:04.388437 + +[23] Log opened at 2024-03-26 18:36:04.390716 +[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] -> + +[24] [Step Debug] <- run -i 5 +[23] [Step Debug] <- run -i 5 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:36:04.416947 + +[25] Log opened at 2024-03-26 18:36:04.419107 +[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] -> + +[49] [Step Debug] -> + +[49] Log closed at 2024-03-26 18:36:04.454037 + +[49] Log opened at 2024-03-26 18:36:04.455705 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[25] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[49] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[25] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[49] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[51] [Step Debug] -> + +[51] Log closed at 2024-03-26 18:36:04.493154 + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-26 18:36:04.609406 + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-26 18:36:04.657223 + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:36:04.684814 + +[34] Log opened at 2024-03-26 18:36:25.470406 +[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/Cosidotapablanda.php -n 1317 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[25] [Step Debug] <- run -i 12 +[49] [Step Debug] <- run -i 12 +[34] [Step Debug] <- run -i 12 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-26 18:36:25.612174 + +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:36:26.852831 + +[25] [Step Debug] -> + +[25] Log closed at 2024-03-26 18:36:26.876117 + +[34] Log opened at 2024-03-26 18:36:27.079566 +[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] -> + +[52] Log opened at 2024-03-26 18:36:27.084512 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[53] Log opened at 2024-03-26 18:36:27.084422 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[50] Log opened at 2024-03-26 18:36:27.084715 +[52] [Step Debug] -> + +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[53] [Step Debug] -> + +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[50] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[34] [Step Debug] -> + +[51] Log opened at 2024-03-26 18:36:27.085986 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[54] Log opened at 2024-03-26 18:36:27.085880 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] -> + +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[54] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[34] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[52] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[53] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[50] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[51] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[54] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[52] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[53] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[54] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[51] [Step Debug] -> + +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[54] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[51] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[54] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[51] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[54] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[54] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[34] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[51] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[54] [Step Debug] -> + +[51] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[54] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[53] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[52] [Step Debug] -> + +[53] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[50] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[54] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[51] [Step Debug] -> + +[54] [Step Debug] -> + +[34] [Step Debug] <- run -i 12 +[52] [Step Debug] <- run -i 12 +[53] [Step Debug] <- run -i 12 +[50] [Step Debug] <- run -i 12 +[51] [Step Debug] <- run -i 12 +[54] [Step Debug] <- run -i 12 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:36:27.279097 + +[34] Log opened at 2024-03-26 18:36:27.282430 +[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] <- run -i 5 +[52] [Step Debug] -> + +[52] Log closed at 2024-03-26 18:36:27.536165 + +[52] Log opened at 2024-03-26 18:36:27.538706 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[53] [Step Debug] -> + +[53] Log closed at 2024-03-26 18:36:27.610919 + +[53] Log opened at 2024-03-26 18:36:27.612655 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[52] [Step Debug] <- run -i 5 +[53] [Step Debug] <- run -i 5 +[50] [Step Debug] -> + +[50] Log closed at 2024-03-26 18:36:27.646301 + +[50] Log opened at 2024-03-26 18:36:27.648428 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[51] [Step Debug] -> + +[51] Log closed at 2024-03-26 18:36:27.696227 + +[51] Log opened at 2024-03-26 18:36:27.698937 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[54] [Step Debug] -> + +[54] Log closed at 2024-03-26 18:36:27.732867 + +[50] [Step Debug] <- run -i 5 +[51] [Step Debug] <- run -i 5 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:36:27.762964 + +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[52] [Step Debug] -> + +[52] Log closed at 2024-03-26 18:36:27.903877 + +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[53] [Step Debug] -> + +[53] Log closed at 2024-03-26 18:36:27.938999 + +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[50] [Step Debug] -> + +[50] Log closed at 2024-03-26 18:36:28.002773 + +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[51] [Step Debug] -> + +[51] Log closed at 2024-03-26 18:36:28.043627 + +[51] Log opened at 2024-03-26 18:36:28.171027 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[51] [Step Debug] <- run -i 12 +[52] Log opened at 2024-03-26 18:36:28.294011 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[54] Log opened at 2024-03-26 18:36:28.297473 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[54] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[52] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[54] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[52] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[54] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[52] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[54] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[54] [Step Debug] -> + +[52] [Step Debug] <- run -i 12 +[54] [Step Debug] <- run -i 12 +[50] Log opened at 2024-03-26 18:36:28.485652 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] Log opened at 2024-03-26 18:36:28.486056 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[50] [Step Debug] -> + +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[53] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[50] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[53] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[50] [Step Debug] -> + +[53] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[50] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[53] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[53] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [Step Debug] -> + +[51] [Step Debug] -> + +[51] Log closed at 2024-03-26 18:36:28.621096 + +[50] [Step Debug] <- run -i 15 +[53] [Step Debug] <- run -i 15 +[54] [Step Debug] -> + +[54] Log closed at 2024-03-26 18:36:28.807726 + +[52] [Step Debug] -> + +[52] Log closed at 2024-03-26 18:36:28.902372 + +[50] [Step Debug] -> + +[50] Log closed at 2024-03-26 18:36:28.978323 + +[53] [Step Debug] -> + +[53] Log closed at 2024-03-26 18:36:29.031402 + +[24] Log opened at 2024-03-26 18:38:09.870855 +[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/Cosidotapablanda.php -n 1317 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:38:10.258850 + +[24] Log opened at 2024-03-26 18:38:10.283211 +[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/Cosidotapablanda.php -n 1317 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:38:10.952215 + +[24] Log opened at 2024-03-26 18:38:11.037920 +[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/Cosidotapablanda.php -n 1317 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[49] Log opened at 2024-03-26 18:38:11.051674 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[49] [Step Debug] <- run -i 5 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:38:11.403681 + +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-26 18:38:11.473446 + +[49] Log opened at 2024-03-26 18:38:14.992945 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 345 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 12 +[49] [Step Debug] -> + +[49] [Step Debug] -> + +[49] [Step Debug] <- stack_get -i 13 +[49] [Step Debug] -> + +[49] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[49] [Step Debug] -> + +[49] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[49] [Step Debug] -> + +[49] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[49] [Step Debug] -> + +[49] [Step Debug] <- context_names -i 17 -d 0 +[49] [Step Debug] -> + +[49] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_remove -i 19 -d 490016 +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 20 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-26 18:38:21.746327 + +[49] Log opened at 2024-03-26 18:38:21.996551 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[34] Log opened at 2024-03-26 18:38:21.998362 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[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] -> + +[51] Log opened at 2024-03-26 18:38:21.999255 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[49] [Step Debug] -> + +[54] Log opened at 2024-03-26 18:38:22.000400 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[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] -> + +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[51] [Step Debug] -> + +[54] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] Log opened at 2024-03-26 18:38:22.000967 +[51] [Step Debug] -> + +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[52] Log opened at 2024-03-26 18:38:22.000939 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[50] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] -> + +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[52] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[54] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[54] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[54] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[49] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[34] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[51] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[54] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[50] [Step Debug] -> + +[52] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[51] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[54] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[52] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[34] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[54] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[49] [Step Debug] <- run -i 11 +[34] [Step Debug] <- run -i 11 +[51] [Step Debug] <- run -i 11 +[54] [Step Debug] <- run -i 11 +[50] [Step Debug] <- run -i 11 +[52] [Step Debug] <- run -i 11 +[52] [Step Debug] -> + +[52] Log closed at 2024-03-26 18:38:22.455221 + +[52] Log opened at 2024-03-26 18:38:22.459791 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 5 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-26 18:38:22.493398 + +[34] Log opened at 2024-03-26 18:38:22.497114 +[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] -> + +[50] [Step Debug] -> + +[50] Log closed at 2024-03-26 18:38:22.533022 + +[50] Log opened at 2024-03-26 18:38:22.535636 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[34] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[50] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [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] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[51] [Step Debug] -> + +[51] Log closed at 2024-03-26 18:38:22.575127 + +[51] Log opened at 2024-03-26 18:38:22.577257 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[49] [Step Debug] -> + +[49] Log closed at 2024-03-26 18:38:22.637651 + +[49] Log opened at 2024-03-26 18:38:22.640693 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[54] [Step Debug] -> + +[54] Log closed at 2024-03-26 18:38:22.669289 + +[49] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[52] [Step Debug] -> + +[52] Log closed at 2024-03-26 18:38:22.734575 + +[34] [Step Debug] <- stop -i 11 +[34] [Step Debug] -> + +[50] [Step Debug] <- stop -i 11 +[50] [Step Debug] -> + +[51] [Step Debug] <- stop -i 11 +[51] [Step Debug] -> + +[49] [Step Debug] <- stop -i 11 +[49] [Step Debug] -> + +[53] Log opened at 2024-03-26 18:38:30.374206 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] Log opened at 2024-03-26 18:38:30.394091 +[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. +[24] Log opened at 2024-03-26 18:38:30.413926 +[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. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging 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). +[25] Log opened at 2024-03-26 18:38:30.434935 +[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] 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. +[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-03-26 18:38:30.621284 + +[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. +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:38:30.771388 + +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-03-26 18:38:30.849828 + +[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-03-26 18:38:30.933001 + +[23] Log opened at 2024-03-26 18:38:31.270969 +[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). +[25] Log opened at 2024-03-26 18:38:31.472743 +[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] Log opened at 2024-03-26 18:38:31.475150 +[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). +[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). +[53] Log opened at 2024-03-26 18:38:31.593201 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:38:31.602307 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[55] [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). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging 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-03-26 18:38:31.848685 + +[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. +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:38:32.182869 + +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-03-26 18:38:32.335782 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:38:32.577045 + +[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-03-26 18:38:32.762464 + +[23] Log opened at 2024-03-26 18:38:36.141183 +[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-03-26 18:38:37.714922 + +[23] Log opened at 2024-03-26 18:38:37.945194 +[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. +[52] Log opened at 2024-03-26 18:38:37.950491 +[54] Log opened at 2024-03-26 18:38:37.950442 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] Log opened at 2024-03-26 18:38:37.951486 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[57] Log opened at 2024-03-26 18:38:37.952190 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] Log opened at 2024-03-26 18:38:37.953420 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging 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-03-26 18:38:38.188846 + +[23] Log opened at 2024-03-26 18:38:38.192162 +[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). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:38:38.387104 + +[56] Log opened at 2024-03-26 18:38:38.389127 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-03-26 18:38:38.473364 + +[57] Log opened at 2024-03-26 18:38:38.475625 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-03-26 18:38:38.564102 + +[58] Log opened at 2024-03-26 18:38:38.567415 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log closed at 2024-03-26 18:38:38.696879 + +[54] Log opened at 2024-03-26 18:38:38.698882 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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'. +[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. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:38:38.754999 + +[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. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:38:38.850693 + +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:38:38.956988 + +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] Log closed at 2024-03-26 18:38:39.057430 + +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-03-26 18:38:39.131821 + +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:38:39.218129 + +[23] Log opened at 2024-03-26 18:38:39.320183 +[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). +[58] Log opened at 2024-03-26 18:38:39.523871 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] Log opened at 2024-03-26 18:38:39.526611 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log opened at 2024-03-26 18:38:39.628696 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-03-26 18:38:39.631173 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] ERR: Could not connect to debugging 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-03-26 18:38:39.843419 + +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-03-26 18:38:39.970857 + +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-03-26 18:38:40.094996 + +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:38:40.241747 + +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:38:40.354417 + +[53] Log opened at 2024-03-26 18:39:00.465577 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:39:00.493600 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-26 18:39:00.494304 +[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. +[59] Log opened at 2024-03-26 18:39:00.497869 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] Log opened at 2024-03-26 18:39:00.514668 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] Log opened at 2024-03-26 18:39:00.518859 +[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. +[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). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-03-26 18:39:01.021402 + +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-03-26 18:39:01.104531 + +[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. +[53] Log opened at 2024-03-26 18:39:01.203084 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] Log opened at 2024-03-26 18:39:01.203418 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:39:01.210176 + +[24] Log opened at 2024-03-26 18:39:01.211980 +[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. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:39:01.320342 + +[55] Log opened at 2024-03-26 18:39:01.322404 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:39:01.415497 + +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:39:01.489802 + +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-03-26 18:39:01.637890 + +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-03-26 18:39:01.714597 + +[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. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:39:01.797616 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:39:01.894181 + +[57] Log opened at 2024-03-26 18:39:14.459724 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-03-26 18:39:14.898031 + +[57] Log opened at 2024-03-26 18:39:15.826146 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-03-26 18:39:16.262865 + +[57] Log opened at 2024-03-26 18:39:19.154277 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] Log opened at 2024-03-26 18:39:19.198431 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] Log opened at 2024-03-26 18:39:19.198663 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log opened at 2024-03-26 18:39:19.202199 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-03-26 18:39:19.579729 + +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:39:19.660081 + +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:39:19.777301 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:39:19.853997 + +[56] Log opened at 2024-03-26 18:39:19.896242 +[54] Log opened at 2024-03-26 18:39:19.896066 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[60] Log opened at 2024-03-26 18:39:19.896420 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [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-03-26 18:39:19.898194 +[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. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging 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). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:39:20.309577 + +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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'. +[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. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:39:20.405541 + +[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. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:39:20.502121 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:39:20.576161 + +[57] Log opened at 2024-03-26 18:39:22.718595 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] Log opened at 2024-03-26 18:39:22.730208 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-03-26 18:39:22.731401 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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-03-26 18:39:22.735646 +[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. +[60] Log opened at 2024-03-26 18:39:22.737529 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] Log opened at 2024-03-26 18:39:22.744114 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] ERR: Could not connect to debugging 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. +[57] [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). +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:39:23.156043 + +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-03-26 18:39:23.237453 + +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:39:23.351178 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:39:23.431851 + +[57] Log opened at 2024-03-26 18:39:23.446848 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging 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. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:39:23.534898 + +[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. +[56] Log opened at 2024-03-26 18:39:23.599600 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:39:23.630818 + +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-03-26 18:39:23.872256 + +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:39:24.134168 + +[57] Log opened at 2024-03-26 18:39:27.775367 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] Log opened at 2024-03-26 18:39:27.775551 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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-03-26 18:39:27.776217 +[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. +[60] Log opened at 2024-03-26 18:39:27.784424 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] Log opened at 2024-03-26 18:39:27.788687 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] Log opened at 2024-03-26 18:39:27.790505 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging 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. +[52] [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). +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-03-26 18:39:28.216258 + +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:39:28.283460 + +[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. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:39:28.357769 + +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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-03-26 18:39:28.459615 +[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. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-03-26 18:39:28.471384 + +[57] Log opened at 2024-03-26 18:39:28.497955 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [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). +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:39:28.557256 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:39:28.646138 + +[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. +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:39:28.846040 + +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-03-26 18:39:28.983502 + +[55] Log opened at 2024-03-26 18:40:17.231105 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[24] Log opened at 2024-03-26 18:40:17.230985 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[61] Log opened at 2024-03-26 18:40:17.232568 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] Log opened at 2024-03-26 18:40:17.235917 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] Log opened at 2024-03-26 18:40:17.240829 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] Log opened at 2024-03-26 18:40:17.244184 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [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). +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:40:17.645389 + +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:40:17.734589 + +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:40:17.822724 + +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] Log opened at 2024-03-26 18:40:17.902034 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-03-26 18:40:17.932241 + +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging 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. +[56] Log opened at 2024-03-26 18:40:17.992610 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:40:18.018603 + +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:40:18.085306 + +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:40:18.366933 + +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:40:18.478828 + +[54] Log opened at 2024-03-26 18:45:51.279998 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:45:52.831083 + +[54] Log opened at 2024-03-26 18:45:53.067764 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] Log opened at 2024-03-26 18:45:53.068664 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] Log opened at 2024-03-26 18:45:53.069209 +[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'. +[52] Log opened at 2024-03-26 18:45:53.070060 +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[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. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] Log opened at 2024-03-26 18:45:53.070137 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] Log opened at 2024-03-26 18:45:53.070678 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:45:53.522895 + +[23] Log opened at 2024-03-26 18:45:53.525030 +[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. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:45:53.606905 + +[61] Log opened at 2024-03-26 18:45:53.608792 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:45:53.689042 + +[52] Log opened at 2024-03-26 18:45:53.691176 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:45:53.800637 + +[54] Log opened at 2024-03-26 18:45:53.802842 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] Log closed at 2024-03-26 18:45:53.902956 + +[60] Log opened at 2024-03-26 18:45:53.905040 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:45:53.955739 + +[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. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [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). +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] Log closed at 2024-03-26 18:45:54.065904 + +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:45:54.130076 + +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:45:54.159192 + +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:45:54.246208 + +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:45:54.329682 + +[52] Log opened at 2024-03-26 18:45:54.775480 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging 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 opened at 2024-03-26 18:45:54.939166 +[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'. +[62] Log opened at 2024-03-26 18:45:54.939414 +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[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. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging 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] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] Log opened at 2024-03-26 18:45:55.048374 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] Log opened at 2024-03-26 18:45:55.051357 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:45:55.277538 + +[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-03-26 18:45:55.453248 + +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:45:55.576643 + +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:45:55.697309 + +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:45:55.823166 + +[24] Log opened at 2024-03-26 18:46:06.563432 +[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-03-26 18:46:06.971159 + +[24] Log opened at 2024-03-26 18:46:08.453854 +[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-03-26 18:46:08.965396 + +[24] Log opened at 2024-03-26 18:46:12.207137 +[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. +[55] Log opened at 2024-03-26 18:46:12.252370 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[56] Log opened at 2024-03-26 18:46:12.252455 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 18:46:12.258237 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[52] Log opened at 2024-03-26 18:46:12.267572 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[54] Log opened at 2024-03-26 18:46:12.267572 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:46:12.686702 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:46:12.771609 + +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:46:12.856869 + +[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. +[56] Log opened at 2024-03-26 18:46:12.905355 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:46:12.976884 + +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] Log closed at 2024-03-26 18:46:13.090655 + +[24] Log opened at 2024-03-26 18:46:13.139959 +[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. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:46:13.151834 + +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:46:13.257672 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] Log opened at 2024-03-26 18:46:13.258074 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[52] Log opened at 2024-03-26 18:46:13.258481 +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] Log opened at 2024-03-26 18:46:13.258689 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:46:13.319270 + +[56] Log opened at 2024-03-26 18:46:13.320904 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging 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. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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-03-26 18:46:13.638143 + +[24] Log opened at 2024-03-26 18:46:13.640146 +[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. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:46:13.721297 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-03-26 18:46:13.777074 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:46:13.801358 + +[55] Log opened at 2024-03-26 18:46:13.803177 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:46:13.887167 + +[63] Log opened at 2024-03-26 18:46:13.888877 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:46:13.973614 + +[52] Log opened at 2024-03-26 18:46:13.975939 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:46:14.059789 + +[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. +[56] Log opened at 2024-03-26 18:46:14.089868 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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-03-26 18:46:14.178505 + +[24] Log opened at 2024-03-26 18:46:14.197216 +[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. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:46:14.258885 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:46:14.369806 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:46:14.449794 + +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:46:14.540894 + +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:46:14.622998 + +[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. +[54] Log opened at 2024-03-26 18:46:14.669155 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging 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-03-26 18:46:14.715499 + +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:46:15.071195 + +[24] Log opened at 2024-03-26 18:46:16.108222 +[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. +[55] Log opened at 2024-03-26 18:46:16.139392 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] Log opened at 2024-03-26 18:46:16.143281 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[54] Log opened at 2024-03-26 18:46:16.167865 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 18:46:16.176630 +[52] Log opened at 2024-03-26 18:46:16.176552 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging 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. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:46:16.575795 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:46:16.656234 + +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:46:16.748528 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[24] Log opened at 2024-03-26 18:46:16.748440 +[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. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:46:16.817984 + +[52] Log opened at 2024-03-26 18:46:16.820692 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:46:16.907398 + +[56] Log opened at 2024-03-26 18:46:16.908904 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:46:17.044385 + +[63] Log opened at 2024-03-26 18:46:17.046432 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging 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. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:46:17.127467 + +[54] Log opened at 2024-03-26 18:46:17.129003 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging 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] Log closed at 2024-03-26 18:46:17.214683 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:46:17.324439 + +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:46:17.401613 + +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:46:17.508625 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:46:17.597749 + +[24] Log opened at 2024-03-26 18:46:17.617599 +[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. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:46:17.686898 + +[55] Log opened at 2024-03-26 18:46:17.750696 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging 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-03-26 18:46:18.041810 + +[24] Log opened at 2024-03-26 18:46:18.068561 +[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. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging 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). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:46:18.169660 + +[56] Log opened at 2024-03-26 18:46:18.240024 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging 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-03-26 18:46:18.495530 + +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:46:18.655368 + +[24] Log opened at 2024-03-26 18:46:20.623629 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[55] Log opened at 2024-03-26 18:46:20.624226 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[54] Log opened at 2024-03-26 18:46:20.623931 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[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'. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] Log opened at 2024-03-26 18:46:20.624504 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[63] Log opened at 2024-03-26 18:46:20.624912 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[52] Log opened at 2024-03-26 18:46:20.624744 +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] 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. +[55] [Step Debug] ERR: Could not connect to debugging 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). +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:46:21.060433 + +[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. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:46:21.140125 + +[24] Log opened at 2024-03-26 18:46:21.159085 +[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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:46:21.226467 + +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-03-26 18:46:21.315703 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:46:21.402439 + +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log opened at 2024-03-26 18:46:21.432779 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:46:21.491779 + +[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-03-26 18:46:21.578691 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:46:21.909406 + +[62] Log opened at 2024-03-26 18:47:14.098878 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:47:15.656978 + +[62] Log opened at 2024-03-26 18:47:15.931598 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] Log opened at 2024-03-26 18:47:15.932574 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[61] Log opened at 2024-03-26 18:47:15.932709 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] Log opened at 2024-03-26 18:47:15.933894 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[55] Log opened at 2024-03-26 18:47:15.934673 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] Log opened at 2024-03-26 18:47:15.935761 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:47:16.394782 + +[61] Log opened at 2024-03-26 18:47:16.396547 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:47:16.473416 + +[60] Log opened at 2024-03-26 18:47:16.475251 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:47:16.552234 + +[52] Log opened at 2024-03-26 18:47:16.554241 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:47:16.674350 + +[62] Log opened at 2024-03-26 18:47:16.676996 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:47:16.767672 + +[55] Log opened at 2024-03-26 18:47:16.770778 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:47:16.845559 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] Log closed at 2024-03-26 18:47:16.937896 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:47:16.992283 + +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:47:17.014954 + +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:47:17.106196 + +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:47:17.210628 + +[55] Log opened at 2024-03-26 18:47:18.265931 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] Log opened at 2024-03-26 18:47:18.297324 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] Log opened at 2024-03-26 18:47:18.300962 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log opened at 2024-03-26 18:47:18.369164 +[52] Log opened at 2024-03-26 18:47:18.369164 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:47:18.778981 + +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log closed at 2024-03-26 18:47:18.812512 + +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:47:18.925376 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:47:19.036601 + +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:47:19.152378 + +[55] Log opened at 2024-03-26 18:47:21.442030 +[62] Log opened at 2024-03-26 18:47:21.442145 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[61] Log opened at 2024-03-26 18:47:21.442332 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] Log opened at 2024-03-26 18:47:21.442756 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] Log opened at 2024-03-26 18:47:21.445721 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] Log opened at 2024-03-26 18:47:21.449735 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:47:21.861144 + +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] Log opened at 2024-03-26 18:47:21.908160 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:47:21.951906 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:47:22.040612 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:47:22.127738 + +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:47:22.246997 + +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:47:22.280597 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-03-26 18:47:22.333395 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:47:22.440542 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:47:22.739629 + +[63] Log opened at 2024-03-26 18:49:09.975919 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:49:11.481809 + +[63] Log opened at 2024-03-26 18:49:11.773157 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-03-26 18:49:11.774455 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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-03-26 18:49:11.775310 +[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. +[55] Log opened at 2024-03-26 18:49:11.776625 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] Log opened at 2024-03-26 18:49:11.776553 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] Log opened at 2024-03-26 18:49:11.777300 +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] 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. +[63] [Step Debug] ERR: Could not connect to debugging 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). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:49:12.262016 + +[62] Log opened at 2024-03-26 18:49:12.263966 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging 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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:49:12.337589 + +[55] Log opened at 2024-03-26 18:49:12.339277 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging 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] Log closed at 2024-03-26 18:49:12.424850 + +[24] Log opened at 2024-03-26 18:49:12.426608 +[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. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [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). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:49:12.541803 + +[63] Log opened at 2024-03-26 18:49:12.544785 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log closed at 2024-03-26 18:49:12.639279 + +[54] Log opened at 2024-03-26 18:49:12.641079 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:49:12.690845 + +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] Log closed at 2024-03-26 18:49:12.791037 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:49:12.838826 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:49:12.853543 + +[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. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:49:12.925267 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:49:13.010207 + +[62] Log opened at 2024-03-26 18:49:13.490017 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log opened at 2024-03-26 18:49:13.673025 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-26 18:49:13.675723 +[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. +[65] [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). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:49:13.838868 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-03-26 18:49:13.840681 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:49:13.984379 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:49:14.178158 + +[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-03-26 18:49:14.309493 + +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:49:14.431344 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:49:14.544839 + +[62] Log opened at 2024-03-26 18:49:16.115964 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] Log opened at 2024-03-26 18:49:16.116352 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-26 18:49:16.118274 +[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. +[65] Log opened at 2024-03-26 18:49:16.120763 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-03-26 18:49:16.154606 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] Log opened at 2024-03-26 18:49:16.155485 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [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. +[65] [Step Debug] ERR: Could not connect to debugging 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). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging 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. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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-03-26 18:49:16.536307 + +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:49:16.614882 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:49:16.722879 + +[24] Log opened at 2024-03-26 18:49:16.744169 +[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. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-03-26 18:49:16.768629 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:49:16.805603 + +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:49:16.899076 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:49:16.989874 + +[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-03-26 18:49:17.155052 + +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:49:17.281585 + +[24] Log opened at 2024-03-26 18:49:22.142000 +[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-03-26 18:49:22.585862 + +[24] Log opened at 2024-03-26 18:49:24.040655 +[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-03-26 18:49:24.483192 + +[24] Log opened at 2024-03-26 18:49:27.068756 +[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. +[64] Log opened at 2024-03-26 18:49:27.117183 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] Log opened at 2024-03-26 18:49:27.121291 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[61] Log opened at 2024-03-26 18:49:27.122623 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] Log opened at 2024-03-26 18:49:27.131659 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] Log opened at 2024-03-26 18:49:27.136194 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:49:27.538791 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:49:27.648451 + +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:49:27.764635 + +[24] Log opened at 2024-03-26 18:49:27.800015 +[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. +[60] Log opened at 2024-03-26 18:49:27.826376 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[64] Log opened at 2024-03-26 18:49:27.826275 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [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). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:49:28.267712 + +[52] Log opened at 2024-03-26 18:49:28.269723 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-03-26 18:49:28.374841 + +[66] Log opened at 2024-03-26 18:49:28.378050 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:49:28.488423 + +[61] Log opened at 2024-03-26 18:49:28.490291 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:49:28.615356 + +[64] Log opened at 2024-03-26 18:49:28.616875 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:49:28.709118 + +[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. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:49:28.853005 + +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:49:28.926167 + +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-26 18:49:28.981396 +[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. +[52] Log opened at 2024-03-26 18:49:28.981833 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[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. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] Log opened at 2024-03-26 18:49:28.981869 +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [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. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-03-26 18:49:29.013121 + +[66] Log opened at 2024-03-26 18:49:29.014731 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:49:29.079655 + +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] Log opened at 2024-03-26 18:49:29.176539 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:49:29.180675 + +[64] Log opened at 2024-03-26 18:49:29.199583 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:49:29.406741 + +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:49:29.523114 + +[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. +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:49:29.609763 + +[52] Log opened at 2024-03-26 18:49:29.610012 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log opened at 2024-03-26 18:49:29.673412 +[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. +[60] Log opened at 2024-03-26 18:49:29.674117 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:49:29.677076 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-03-26 18:49:29.698756 + +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging 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). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] Log closed at 2024-03-26 18:49:29.776738 + +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] Log opened at 2024-03-26 18:49:29.845441 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[64] Log closed at 2024-03-26 18:49:29.883993 + +[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. +[64] Log opened at 2024-03-26 18:49:30.058713 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:49:30.071047 + +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:49:30.185677 + +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-26 18:49:31.507426 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[66] Log opened at 2024-03-26 18:49:31.507736 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[60] Log opened at 2024-03-26 18:49:31.507772 +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[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. +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] Log opened at 2024-03-26 18:49:31.509021 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[62] Log opened at 2024-03-26 18:49:31.509040 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging 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). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log opened at 2024-03-26 18:49:47.374047 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Resource temporarily unavailable. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:49:54.211493 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Resource temporarily unavailable. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] Log opened at 2024-03-26 18:49:54.463043 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Resource temporarily unavailable. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log closed at 2024-03-26 18:50:00.899350 + +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:50:00.956817 + +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:50:01.046466 + +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-03-26 18:50:01.136068 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-03-26 18:50:01.212189 + +[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. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:50:01.302135 + +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:50:01.389813 + +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:50:01.477454 + +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:50:02.604988 + +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:50:03.787344 + +[67] Log opened at 2024-03-26 18:50:04.097566 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log opened at 2024-03-26 18:50:04.158937 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-03-26 18:50:04.160948 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] Log opened at 2024-03-26 18:50:04.164810 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:50:04.173555 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] Log opened at 2024-03-26 18:50:04.174070 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:50:04.315855 + +[67] Log opened at 2024-03-26 18:50:04.318108 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:50:04.674340 + +[64] Log opened at 2024-03-26 18:50:04.676964 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:50:04.781889 + +[54] Log opened at 2024-03-26 18:50:04.783913 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:50:04.899962 + +[55] Log opened at 2024-03-26 18:50:04.901930 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:50:04.992087 + +[61] Log opened at 2024-03-26 18:50:04.994650 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:50:05.071629 + +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:50:05.135770 + +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:50:05.222636 + +[52] Log opened at 2024-03-26 18:50:05.235887 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:50:05.315036 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:50:05.398104 + +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:50:05.481357 + +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:50:05.719494 + +[64] Log opened at 2024-03-26 18:50:05.932270 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] Log opened at 2024-03-26 18:50:05.940869 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log opened at 2024-03-26 18:50:06.034037 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] Log opened at 2024-03-26 18:50:06.084618 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:50:06.143480 + +[64] Log opened at 2024-03-26 18:50:06.179702 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[54] Log opened at 2024-03-26 18:50:06.180037 +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:50:06.474310 + +[61] Log closed at 2024-03-26 18:50:06.478388 + +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:50:06.667023 + +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] Log opened at 2024-03-26 18:50:06.726491 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:50:06.746802 + +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:50:06.848747 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:50:06.899926 + +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:50:07.089060 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:50:07.254177 + +[24] Log opened at 2024-03-26 18:50:13.927397 +[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. +[65] Log opened at 2024-03-26 18:50:14.322974 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging 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-03-26 18:50:14.369194 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:50:14.733845 + +[24] Log opened at 2024-03-26 18:50:14.801015 +[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-03-26 18:50:15.242461 + +[24] Log opened at 2024-03-26 18:50:19.733083 +[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-03-26 18:50:20.534487 + +[24] Log opened at 2024-03-26 18:50:20.730852 +[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-03-26 18:50:20.974664 + +[62] Log opened at 2024-03-26 18:50:21.245897 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 18:50:21.488719 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-26 18:50:21.505157 +[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. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] Log opened at 2024-03-26 18:50:21.524521 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:50:21.603701 + +[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. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:50:21.937461 + +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:50:22.021814 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:50:22.102904 + +[62] Log opened at 2024-03-26 18:50:24.366940 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:50:24.886875 + +[62] Log opened at 2024-03-26 18:50:25.056481 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:50:25.300241 + +[62] Log opened at 2024-03-26 18:50:25.549420 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log opened at 2024-03-26 18:50:25.729658 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:50:25.886143 + +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:50:26.153313 + +[62] Log opened at 2024-03-26 18:50:29.597087 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:50:30.359872 + +[62] Log opened at 2024-03-26 18:50:30.582865 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:50:30.821390 + +[62] Log opened at 2024-03-26 18:50:31.113566 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-03-26 18:50:31.361684 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] Log opened at 2024-03-26 18:50:31.378426 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] Log opened at 2024-03-26 18:50:31.399305 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:50:31.482614 + +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:50:31.780706 + +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-03-26 18:50:31.873371 + +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:50:31.993202 + +[61] Log opened at 2024-03-26 18:50:43.420298 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:50:43.873118 + +[61] Log opened at 2024-03-26 18:50:43.892176 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:50:44.411280 + +[61] Log opened at 2024-03-26 18:50:44.439435 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:50:44.461920 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:50:44.891701 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:50:45.010476 + +[65] Log opened at 2024-03-26 18:50:56.759232 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:50:58.264161 + +[65] Log opened at 2024-03-26 18:50:58.512428 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-26 18:50:58.514800 +[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. +[67] Log opened at 2024-03-26 18:50:58.515685 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] Log opened at 2024-03-26 18:50:58.516616 +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] Log opened at 2024-03-26 18:50:58.516133 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-03-26 18:50:58.517281 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] ERR: Could not connect to debugging 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). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:50:58.987614 + +[62] Log opened at 2024-03-26 18:50:58.989561 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging 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. +[65] Log closed at 2024-03-26 18:50:59.109493 + +[65] Log opened at 2024-03-26 18:50:59.112633 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging 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] Log closed at 2024-03-26 18:50:59.159323 + +[24] Log opened at 2024-03-26 18:50:59.161912 +[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. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:50:59.241823 + +[63] Log opened at 2024-03-26 18:50:59.243696 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:50:59.331435 + +[67] Log opened at 2024-03-26 18:50:59.333516 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:50:59.423120 + +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:50:59.501576 + +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:50:59.527238 + +[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. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:50:59.580959 + +[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. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:50:59.659370 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:50:59.743592 + +[62] Log opened at 2024-03-26 18:51:00.186700 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log opened at 2024-03-26 18:51:00.322094 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log opened at 2024-03-26 18:51:00.410227 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log opened at 2024-03-26 18:51:00.648992 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[54] Log opened at 2024-03-26 18:51:00.648965 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[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. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [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. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] Log closed at 2024-03-26 18:51:00.665032 + +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging 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). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:51:00.813600 + +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:51:00.939767 + +[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. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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-03-26 18:51:01.149519 + +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-03-26 18:51:01.275607 + +[64] Log opened at 2024-03-26 18:51:21.011782 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:51:21.407136 + +[64] Log opened at 2024-03-26 18:51:25.979079 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:51:26.424386 + +[61] Log opened at 2024-03-26 18:51:44.362508 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[55] Log opened at 2024-03-26 18:51:44.606508 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] Log opened at 2024-03-26 18:51:44.648976 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:51:44.849118 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:51:46.046394 + +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-03-26 18:51:46.118361 + +[55] Log opened at 2024-03-26 18:51:46.333848 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] Log opened at 2024-03-26 18:51:46.334729 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[62] Log opened at 2024-03-26 18:51:46.334988 +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 18:51:46.335138 +[67] Log opened at 2024-03-26 18:51:46.335604 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-26 18:51:46.348222 +[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. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging 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). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:51:46.737957 + +[65] Log opened at 2024-03-26 18:51:46.740006 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:51:46.835083 + +[67] Log opened at 2024-03-26 18:51:46.837308 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:51:46.908343 + +[62] Log opened at 2024-03-26 18:51:46.910273 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:51:47.028467 + +[55] Log opened at 2024-03-26 18:51:47.031418 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:51:47.105518 + +[24] Log opened at 2024-03-26 18:51:47.107502 +[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. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:51:47.197974 + +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging 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. +[65] Log closed at 2024-03-26 18:51:47.275279 + +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:51:47.330632 + +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:51:47.356599 + +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:51:47.444867 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:51:47.532245 + +[67] Log opened at 2024-03-26 18:51:47.878556 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log opened at 2024-03-26 18:51:48.138738 +[65] Log opened at 2024-03-26 18:51:48.138711 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 18:51:48.261048 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-26 18:51:48.266373 +[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. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [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. +[63] [Step Debug] ERR: Could not connect to debugging 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). +[67] Log closed at 2024-03-26 18:51:48.358090 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:51:48.584479 + +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-03-26 18:51:48.729208 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:51:48.835222 + +[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-03-26 18:51:48.912289 + +[61] Log opened at 2024-03-26 18:51:56.362266 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:51:57.906552 + +[61] Log opened at 2024-03-26 18:51:58.258717 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:51:58.315619 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] Log opened at 2024-03-26 18:51:58.318339 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] Log opened at 2024-03-26 18:51:58.323248 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] Log opened at 2024-03-26 18:51:58.336826 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[71] Log opened at 2024-03-26 18:51:58.337356 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:51:58.498535 + +[61] Log opened at 2024-03-26 18:51:58.502057 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:51:58.786881 + +[67] Log opened at 2024-03-26 18:51:58.788862 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:51:58.874562 + +[65] Log opened at 2024-03-26 18:51:58.876222 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-03-26 18:51:58.960941 + +[72] Log opened at 2024-03-26 18:51:58.963370 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:51:59.098216 + +[55] Log opened at 2024-03-26 18:51:59.100249 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-03-26 18:51:59.199474 + +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:51:59.266820 + +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:51:59.388598 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:51:59.445024 + +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-03-26 18:51:59.529055 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:51:59.616939 + +[71] Log opened at 2024-03-26 18:51:59.780348 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] Log opened at 2024-03-26 18:52:00.015234 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] Log opened at 2024-03-26 18:52:00.016176 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] Log opened at 2024-03-26 18:52:00.076508 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] Log opened at 2024-03-26 18:52:00.077613 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-03-26 18:52:00.274101 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:52:00.443340 + +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:52:00.527882 + +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-03-26 18:52:00.675163 + +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:52:00.779989 + +[63] Log opened at 2024-03-26 18:52:16.979028 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:52:17.398151 + +[63] Log opened at 2024-03-26 18:52:18.387103 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:52:18.843103 + +[24] Log opened at 2024-03-26 18:52:25.060757 +[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-03-26 18:52:25.493829 + +[24] Log opened at 2024-03-26 18:52:26.626950 +[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-03-26 18:52:27.089028 + +[24] Log opened at 2024-03-26 18:52:27.320262 +[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-03-26 18:52:27.764017 + +[24] Log opened at 2024-03-26 18:52:28.774408 +[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. +[64] Log opened at 2024-03-26 18:52:28.778185 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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-03-26 18:52:29.206957 + +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:52:29.318850 + +[73] Log opened at 2024-03-26 18:52:41.735263 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-03-26 18:52:42.198028 + +[73] Log opened at 2024-03-26 18:52:42.222623 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-03-26 18:52:42.751871 + +[55] Log opened at 2024-03-26 18:52:42.776766 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] Log opened at 2024-03-26 18:52:42.779535 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:52:43.198257 + +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-03-26 18:52:43.320360 + +[73] Log opened at 2024-03-26 18:52:46.214311 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:52:46.220482 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] Log opened at 2024-03-26 18:52:46.226505 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[67] Log opened at 2024-03-26 18:52:46.226667 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] Log opened at 2024-03-26 18:52:46.233326 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] Log opened at 2024-03-26 18:52:46.236971 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:52:46.631958 + +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-03-26 18:52:46.726348 + +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] Log closed at 2024-03-26 18:52:47.231127 + +[73] Log opened at 2024-03-26 18:52:47.263402 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:52:47.284407 + +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:52:47.362558 + +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:52:47.436476 + +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-03-26 18:52:47.707444 + +[73] Log opened at 2024-03-26 18:52:49.026945 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-03-26 18:52:50.500986 + +[73] Log opened at 2024-03-26 18:52:50.740578 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] Log opened at 2024-03-26 18:52:50.740578 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] Log opened at 2024-03-26 18:52:50.740785 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] Log opened at 2024-03-26 18:52:50.741236 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[72] Log opened at 2024-03-26 18:52:50.740959 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] Log opened at 2024-03-26 18:52:50.741567 +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:52:51.178177 + +[65] Log opened at 2024-03-26 18:52:51.180164 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:52:51.247714 + +[67] Log opened at 2024-03-26 18:52:51.249524 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-03-26 18:52:51.333503 + +[72] Log opened at 2024-03-26 18:52:51.335804 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-03-26 18:52:51.417942 + +[73] Log opened at 2024-03-26 18:52:51.420217 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:52:51.563380 + +[55] Log opened at 2024-03-26 18:52:51.565349 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:52:51.655181 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] Log closed at 2024-03-26 18:52:51.739150 + +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:52:51.796942 + +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:52:51.821722 + +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-03-26 18:52:51.913059 + +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-03-26 18:52:51.985504 + +[55] Log opened at 2024-03-26 18:52:52.427520 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log opened at 2024-03-26 18:52:52.566942 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log opened at 2024-03-26 18:52:52.656176 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] Log opened at 2024-03-26 18:52:52.659133 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log opened at 2024-03-26 18:52:52.747283 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] Log opened at 2024-03-26 18:52:52.750879 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:52:52.922546 + +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-03-26 18:52:53.087659 + +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:52:53.211850 + +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-03-26 18:52:53.345440 + +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-03-26 18:52:53.452042 + +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:52:53.544293 + +[24] Log opened at 2024-03-26 18:53:13.245993 +[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-03-26 18:53:13.682499 + +[24] Log opened at 2024-03-26 18:53:18.532646 +[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-03-26 18:53:18.963463 + +[24] Log opened at 2024-03-26 18:53:21.521412 +[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-03-26 18:53:21.950042 + +[24] Log opened at 2024-03-26 18:53:25.062973 +[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-03-26 18:53:25.477617 + +[24] Log opened at 2024-03-26 18:53:27.229671 +[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-03-26 18:53:27.656451 + +[64] Log opened at 2024-03-26 18:53:36.559667 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] Log opened at 2024-03-26 18:53:36.564122 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[55] Log opened at 2024-03-26 18:53:36.564518 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] Log opened at 2024-03-26 18:53:36.566175 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] Log opened at 2024-03-26 18:53:36.579243 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] Log opened at 2024-03-26 18:53:36.582514 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:53:37.017322 + +[65] Log opened at 2024-03-26 18:53:37.043465 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 18:53:37.106770 + +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-03-26 18:53:37.186140 + +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:53:37.309245 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:53:37.394800 + +[64] Log opened at 2024-03-26 18:53:37.416525 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] Log opened at 2024-03-26 18:53:37.417907 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[55] Log opened at 2024-03-26 18:53:37.417766 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] Log closed at 2024-03-26 18:53:37.471366 + +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] Log opened at 2024-03-26 18:53:37.491850 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:53:37.589807 + +[65] Log opened at 2024-03-26 18:53:37.608297 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:53:37.790985 + +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 18:53:37.891889 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:53:37.996432 + +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-03-26 18:53:38.085470 + +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] Log opened at 2024-03-26 18:53:38.119755 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-03-26 18:53:38.166213 + +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-03-26 18:53:38.536390 + +[63] Log opened at 2024-03-26 18:54:15.201649 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:54:16.623725 + +[63] Log opened at 2024-03-26 18:54:16.866036 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-26 18:54:16.867571 +[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. +[73] Log opened at 2024-03-26 18:54:16.868667 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[74] Log opened at 2024-03-26 18:54:16.868869 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] Log opened at 2024-03-26 18:54:16.869017 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:54:16.869220 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging 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). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:54:17.275621 + +[55] Log opened at 2024-03-26 18:54:17.277838 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 18:54:17.359735 + +[75] Log opened at 2024-03-26 18:54:17.362007 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:54:17.483113 + +[63] Log opened at 2024-03-26 18:54:17.485186 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [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-03-26 18:54:17.553645 + +[24] Log opened at 2024-03-26 18:54:17.555553 +[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. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [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). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-03-26 18:54:17.624374 + +[73] Log opened at 2024-03-26 18:54:17.626427 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 18:54:17.706398 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log closed at 2024-03-26 18:54:17.780725 + +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] Log closed at 2024-03-26 18:54:17.834296 + +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 18:54:17.859401 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:54:17.954957 + +[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-03-26 18:54:18.023305 + +[74] Log opened at 2024-03-26 18:54:18.396864 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log opened at 2024-03-26 18:54:18.567656 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] Log opened at 2024-03-26 18:54:18.585296 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log opened at 2024-03-26 18:54:18.613997 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [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-03-26 18:54:18.751747 +[63] Log opened at 2024-03-26 18:54:18.751788 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [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. +[63] [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). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging 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). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 18:54:18.882780 + +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-03-26 18:54:19.048584 + +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 18:54:19.174587 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:54:19.296252 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:54:19.390586 + +[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-03-26 18:54:19.488807 + +[67] Log opened at 2024-03-26 18:55:16.138006 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] Log opened at 2024-03-26 18:55:16.142132 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] Log opened at 2024-03-26 18:55:16.143071 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] Log opened at 2024-03-26 18:55:16.157224 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] Log opened at 2024-03-26 18:55:16.157443 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:55:16.554813 + +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 18:55:16.656382 + +[67] Log opened at 2024-03-26 18:55:16.683330 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-03-26 18:55:16.768031 + +[73] Log opened at 2024-03-26 18:55:16.788586 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 18:55:16.854659 + +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-03-26 18:55:16.948335 + +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] Log opened at 2024-03-26 18:55:17.102788 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] Log opened at 2024-03-26 18:55:17.107874 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] Log opened at 2024-03-26 18:55:17.107747 +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:55:17.126487 + +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-03-26 18:55:17.214296 + +[67] Log opened at 2024-03-26 18:55:17.283226 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-03-26 18:55:17.560466 + +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] Log opened at 2024-03-26 18:55:17.604692 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 18:55:17.632039 + +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 18:55:17.720009 + +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:55:17.800043 + +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-03-26 18:55:18.068664 + +[75] Log opened at 2024-03-26 18:55:22.373286 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] Log opened at 2024-03-26 18:55:22.397653 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log opened at 2024-03-26 18:55:22.438787 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] Log opened at 2024-03-26 18:55:22.439659 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:55:22.447478 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 18:55:22.461439 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-26 18:55:22.471299 +[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. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging 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). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:55:22.877691 + +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-03-26 18:55:22.951605 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] Log opened at 2024-03-26 18:55:22.992100 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:55:23.034697 + +[76] Log opened at 2024-03-26 18:55:23.036417 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 18:55:23.147882 + +[74] Log opened at 2024-03-26 18:55:23.150271 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [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. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 18:55:23.259016 + +[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. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:55:23.352753 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:55:23.434324 + +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-26 18:55:23.515944 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[75] Log opened at 2024-03-26 18:55:23.516112 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[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. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [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). +[63] Log opened at 2024-03-26 18:55:23.516366 +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [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). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:55:23.558044 + +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-03-26 18:55:23.642191 + +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 18:55:23.735655 + +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 18:55:23.911773 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:55:23.993439 + +[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-03-26 18:55:24.070715 + +[24] Log opened at 2024-03-26 18:55:25.252518 +[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). +[67] Log opened at 2024-03-26 18:55:25.326416 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log opened at 2024-03-26 18:55:25.329941 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] Log opened at 2024-03-26 18:55:25.330251 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging 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. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [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-03-26 18:55:25.688331 + +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-03-26 18:55:25.771566 + +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] Log opened at 2024-03-26 18:55:25.832913 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[76] Log opened at 2024-03-26 18:55:25.832787 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[24] Log opened at 2024-03-26 18:55:25.832651 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1: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). +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [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. +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:55:25.857623 + +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging 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). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 18:55:25.936013 + +[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. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [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-03-26 18:55:26.222648 + +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-03-26 18:55:26.306660 + +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 18:55:26.392409 + +[77] Log opened at 2024-03-26 18:55:54.310932 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 18:55:54.768301 + +[77] Log opened at 2024-03-26 18:55:56.940647 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 18:55:57.379643 + +[77] Log opened at 2024-03-26 18:55:57.857126 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 18:55:58.271475 + +[77] Log opened at 2024-03-26 18:55:59.681926 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 18:56:00.131508 + +[77] Log opened at 2024-03-26 18:56:00.269526 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 18:56:00.729078 + +[77] Log opened at 2024-03-26 18:56:01.845804 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] Log opened at 2024-03-26 18:56:01.869724 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 18:56:02.292468 + +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 18:56:02.431683 + +[79] Log opened at 2024-03-26 18:56:14.653786 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-03-26 18:56:15.097998 + +[79] Log opened at 2024-03-26 18:56:16.314680 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-03-26 18:56:16.749179 + +[79] Log opened at 2024-03-26 18:56:17.046664 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-03-26 18:56:17.476554 + +[79] Log opened at 2024-03-26 18:56:18.591388 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 18:56:18.609914 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-03-26 18:56:19.062671 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:56:19.150555 + +[63] Log opened at 2024-03-26 18:56:33.115228 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log opened at 2024-03-26 18:56:33.126593 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[67] Log opened at 2024-03-26 18:56:33.126596 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[24] Log opened at 2024-03-26 18:56:33.126754 +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [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'. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging 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. +[67] [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). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 18:56:33.510770 + +[63] Log closed at 2024-03-26 18:56:33.511065 + +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:56:33.588252 + +[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-03-26 18:56:33.676258 + +[24] Log opened at 2024-03-26 18:56:34.514459 +[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. +[67] Log opened at 2024-03-26 18:56:34.524709 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] Log opened at 2024-03-26 18:56:34.524995 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log opened at 2024-03-26 18:56:34.527707 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [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). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 18:56:34.932239 + +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:56:35.010230 + +[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. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 18:56:35.090717 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 18:56:35.189357 + +[76] Log opened at 2024-03-26 18:56:41.223060 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-03-26 18:56:41.641079 + +[76] Log opened at 2024-03-26 18:56:43.735462 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-03-26 18:56:44.181607 + +[76] Log opened at 2024-03-26 18:56:46.900887 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-03-26 18:56:47.737728 + +[74] Log opened at 2024-03-26 18:56:56.490647 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 18:56:56.907794 + +[74] Log opened at 2024-03-26 18:56:59.200385 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 18:56:59.669438 + +[74] Log opened at 2024-03-26 18:57:01.777421 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 18:57:02.205990 + +[74] Log opened at 2024-03-26 18:57:03.249292 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 18:57:03.707356 + +[74] Log opened at 2024-03-26 18:57:03.819427 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] Log opened at 2024-03-26 18:57:03.889128 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[77] Log opened at 2024-03-26 18:57:03.889205 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] Log opened at 2024-03-26 18:57:03.888980 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 18:57:04.232625 + +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 18:57:04.312341 + +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 18:57:04.395198 + +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-03-26 18:57:04.513603 + +[55] Log opened at 2024-03-26 18:57:19.050430 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:57:19.494969 + +[55] Log opened at 2024-03-26 18:57:19.600813 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log opened at 2024-03-26 18:57:19.656026 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[75] Log opened at 2024-03-26 18:57:19.656030 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] Log opened at 2024-03-26 18:57:19.656312 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [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). +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 18:57:20.027883 + +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-03-26 18:57:20.117558 + +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [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. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 18:57:20.203019 + +[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-03-26 18:57:20.271842 + +[63] Log opened at 2024-03-26 18:57:46.950459 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 11 +[63] [Step Debug] -> + +[63] Log closed at 2024-03-26 18:57:47.309698 + +[63] Log opened at 2024-03-26 18:57:49.240060 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 11 +[63] [Step Debug] -> + +[63] Log closed at 2024-03-26 18:57:49.626390 + +[63] Log opened at 2024-03-26 18:57:49.995187 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 11 +[63] [Step Debug] -> + +[63] Log closed at 2024-03-26 18:57:50.340304 + +[63] Log opened at 2024-03-26 18:57:51.185770 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 11 +[63] [Step Debug] -> + +[63] Log closed at 2024-03-26 18:57:51.545349 + +[63] Log opened at 2024-03-26 18:57:51.666836 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 11 +[63] [Step Debug] -> + +[63] Log closed at 2024-03-26 18:57:52.021229 + +[63] Log opened at 2024-03-26 18:57:52.749384 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[76] Log opened at 2024-03-26 18:57:52.764466 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[76] [Step Debug] -> + +[63] [Step Debug] <- run -i 11 +[76] [Step Debug] <- run -i 5 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[76] [Step Debug] -> + +[76] Log closed at 2024-03-26 18:57:53.089616 + +[63] [Step Debug] -> + +[63] Log closed at 2024-03-26 18:57:53.157853 + +[63] Log opened at 2024-03-26 18:57:55.735653 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[76] Log opened at 2024-03-26 18:57:55.805616 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[76] [Step Debug] -> + +[74] Log opened at 2024-03-26 18:57:55.806879 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[74] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[76] [Step Debug] -> + +[77] Log opened at 2024-03-26 18:57:55.809385 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[74] [Step Debug] -> + +[77] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[74] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[63] [Step Debug] <- run -i 11 +[76] [Step Debug] <- run -i 5 +[74] [Step Debug] <- run -i 5 +[77] [Step Debug] <- run -i 5 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[74] [Step Debug] -> + +[74] Log closed at 2024-03-26 18:57:56.108706 + +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[77] [Step Debug] -> + +[77] Log closed at 2024-03-26 18:57:56.143101 + +[63] [Step Debug] -> + +[63] Log closed at 2024-03-26 18:57:56.204825 + +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[76] [Step Debug] -> + +[76] Log closed at 2024-03-26 18:57:56.243539 + +[63] Log opened at 2024-03-26 18:57:56.273976 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[76] Log opened at 2024-03-26 18:57:56.337950 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[74] Log opened at 2024-03-26 18:57:56.338055 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[77] Log opened at 2024-03-26 18:57:56.338143 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[74] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] -> + +[76] [Step Debug] -> + +[74] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[76] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[74] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[76] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[74] [Step Debug] -> + +[63] [Step Debug] <- run -i 11 +[76] [Step Debug] <- run -i 4 +[77] [Step Debug] <- run -i 4 +[74] [Step Debug] <- run -i 4 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[77] Log closed at 2024-03-26 18:57:56.581423 + +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[74] [Step Debug] -> + +[74] Log closed at 2024-03-26 18:57:56.626768 + +[63] [Step Debug] -> + +[63] Log closed at 2024-03-26 18:57:56.680056 + +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[76] [Step Debug] -> + +[76] Log closed at 2024-03-26 18:57:56.717165 + +[78] Log opened at 2024-03-26 18:58:43.555976 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 197 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[78] [Step Debug] -> + +[79] Log opened at 2024-03-26 18:58:43.620880 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[79] [Step Debug] -> + +[55] Log opened at 2024-03-26 18:58:43.624253 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[67] Log opened at 2024-03-26 18:58:43.626361 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[78] [Step Debug] <- run -i 12 +[79] [Step Debug] <- run -i 5 +[55] [Step Debug] <- run -i 5 +[67] [Step Debug] <- run -i 5 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[55] [Step Debug] -> + +[55] Log closed at 2024-03-26 18:58:43.905906 + +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[79] [Step Debug] -> + +[79] Log closed at 2024-03-26 18:58:43.946833 + +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[67] [Step Debug] -> + +[67] Log closed at 2024-03-26 18:58:43.983324 + +[78] [Step Debug] -> + +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 13 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 17 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 211 +[78] [Step Debug] -> + +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_remove -i 20 -d 780002 +[78] [Step Debug] -> + +[78] [Step Debug] <- run -i 21 +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 22 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 23 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 26 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 27 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- step_over -i 28 +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 29 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 30 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 31 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 32 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 33 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- step_over -i 35 +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 36 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 37 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 38 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 39 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 40 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 41 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- step_over -i 42 +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 43 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 45 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 47 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 48 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- step_over -i 49 +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 50 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 51 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 52 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 53 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 54 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- step_over -i 56 +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 57 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 58 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 59 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 60 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 61 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 62 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- step_over -i 63 +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 64 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 65 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 66 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 67 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 68 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 69 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- property_get -i 70 -n "$linea[\"fields\"]" -p 0 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- property_get -i 71 -n "$paginas_por_pliego_click" -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 72 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 461 +[78] [Step Debug] -> + +[78] [Step Debug] -> + +[78] [Step Debug] <- run -i 73 +[78] [Step Debug] -> + +[78] Log closed at 2024-03-26 18:59:27.058919 + +[78] Log opened at 2024-03-26 18:59:27.162347 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 211 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 461 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[78] [Step Debug] -> + +[75] Log opened at 2024-03-26 18:59:27.214387 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] Log opened at 2024-03-26 18:59:27.214570 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[77] Log opened at 2024-03-26 18:59:27.214777 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[75] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[75] [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'. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [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] -> + +[77] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] -> + +[75] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[75] [Step Debug] -> + +[75] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[75] [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] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[75] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[75] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[75] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[75] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[78] [Step Debug] <- run -i 13 +[75] [Step Debug] <- run -i 5 +[24] [Step Debug] <- run -i 5 +[77] [Step Debug] <- run -i 5 +[75] [Step Debug] -> + +[75] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[75] [Step Debug] -> + +[75] Log closed at 2024-03-26 18:59:27.558760 + +[78] [Step Debug] -> + +[78] [Step Debug] -> + +[78] [Step Debug] -> + +[78] Log closed at 2024-03-26 18:59:27.609083 + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:59:27.660615 + +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[77] [Step Debug] -> + +[77] Log closed at 2024-03-26 18:59:27.707916 + +[78] Log opened at 2024-03-26 18:59:30.129512 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 211 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 461 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[78] [Step Debug] -> + +[77] Log opened at 2024-03-26 18:59:30.194851 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[75] Log opened at 2024-03-26 18:59:30.198822 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[75] [Step Debug] -> + +[24] Log opened at 2024-03-26 18:59:30.199493 +[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] -> + +[75] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[75] [Step Debug] -> + +[75] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[75] [Step Debug] -> + +[75] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[75] [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] -> + +[75] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[75] [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] -> + +[78] [Step Debug] <- run -i 13 +[77] [Step Debug] <- run -i 5 +[75] [Step Debug] <- run -i 5 +[24] [Step Debug] <- run -i 5 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 18:59:30.522300 + +[78] [Step Debug] -> + +[78] [Step Debug] -> + +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 14 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 17 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 18 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_remove -i 20 -d 780019 +[78] [Step Debug] -> + +[78] [Step Debug] <- run -i 21 +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 22 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 23 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 26 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 27 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- step_over -i 28 +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 29 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 30 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 31 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 32 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 33 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- step_over -i 35 +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 36 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 37 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 38 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 39 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 40 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 41 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- step_over -i 42 +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 43 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 45 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 47 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 48 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- step_over -i 49 +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 50 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 51 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 52 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 53 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 54 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- step_over -i 56 +[78] [Step Debug] -> + +[78] [Step Debug] <- stack_get -i 57 +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 58 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 59 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[78] [Step Debug] -> + +[78] [Step Debug] <- eval -i 60 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[78] [Step Debug] -> + +[78] [Step Debug] <- context_names -i 61 -d 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- context_get -i 62 -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- property_get -i 63 -n "$paginas_por_pliego" -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- property_get -i 64 -n "$datosPedido->paginas" -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- property_get -i 65 -n "$paginas_por_pliego" -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- property_get -i 66 -n "$factor_anchura" -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- property_get -i 67 -n "$factor_altura" -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- property_get -i 68 -n "$datosPedido->isCosido" -d 0 -c 0 +[78] [Step Debug] -> + +[78] [Step Debug] <- run -i 69 +[78] [Step Debug] -> + +[78] Log closed at 2024-03-26 19:00:32.395956 + +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[77] [Step Debug] -> + +[77] Log closed at 2024-03-26 19:00:32.435448 + +[75] [Step Debug] -> + +[75] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[75] [Step Debug] -> + +[75] Log closed at 2024-03-26 19:00:32.480261 + +[77] Log opened at 2024-03-26 19:00:32.496469 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 461 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[77] [Step Debug] -> + +[75] Log opened at 2024-03-26 19:00:32.576397 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[78] Log opened at 2024-03-26 19:00:32.576588 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[75] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[75] [Step Debug] -> + +[78] [Step Debug] -> + +[74] Log opened at 2024-03-26 19:00:32.577539 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[75] [Step Debug] -> + +[74] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[75] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[75] [Step Debug] -> + +[74] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[78] [Step Debug] -> + +[75] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[75] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[78] [Step Debug] -> + +[75] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[75] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[78] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[74] [Step Debug] -> + +[77] [Step Debug] <- run -i 12 +[75] [Step Debug] <- run -i 5 +[78] [Step Debug] <- run -i 5 +[74] [Step Debug] <- run -i 5 +[77] [Step Debug] -> + +[77] [Step Debug] -> + +[77] Log closed at 2024-03-26 19:00:32.894169 + +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[74] [Step Debug] -> + +[74] Log closed at 2024-03-26 19:00:32.936484 + +[75] [Step Debug] -> + +[75] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[75] [Step Debug] -> + +[75] Log closed at 2024-03-26 19:00:32.973823 + +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[78] [Step Debug] -> + +[78] Log closed at 2024-03-26 19:00:33.025948 + +[76] Log opened at 2024-03-26 19:03:48.988556 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 464 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[76] [Step Debug] -> + +[76] [Step Debug] <- run -i 12 +[76] [Step Debug] -> + +[76] [Step Debug] -> + +[76] [Step Debug] <- stack_get -i 13 +[76] [Step Debug] -> + +[76] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[76] [Step Debug] -> + +[76] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[76] [Step Debug] -> + +[76] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[76] [Step Debug] -> + +[76] [Step Debug] <- context_names -i 17 -d 0 +[76] [Step Debug] -> + +[76] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[76] [Step Debug] -> + +[76] [Step Debug] <- run -i 19 +[76] [Step Debug] -> + +[76] Log closed at 2024-03-26 19:03:53.038692 + +[76] Log opened at 2024-03-26 19:03:53.276357 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] Log opened at 2024-03-26 19:03:53.276357 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[76] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[76] [Step Debug] -> + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[55] [Step Debug] -> + +[79] Log opened at 2024-03-26 19:03:53.277751 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[79] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[76] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[67] Log opened at 2024-03-26 19:03:53.278412 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[77] Log opened at 2024-03-26 19:03:53.278893 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[24] Log opened at 2024-03-26 19:03:53.278719 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] -> + +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1: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. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[67] [Step Debug] -> + +[77] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[24] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[76] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[79] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [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] -> + +[79] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[79] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[79] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[76] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[55] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[79] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[67] [Step Debug] -> + +[77] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[24] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 464 +[76] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 464 +[55] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 464 +[79] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 464 +[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 464 +[67] [Step Debug] -> + +[77] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 464 +[24] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[76] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[79] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[55] [Step Debug] -> + +[79] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[79] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[67] [Step Debug] -> + +[79] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[67] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[77] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[76] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[76] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[79] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[67] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[79] [Step Debug] -> + +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[67] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[77] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[76] [Step Debug] <- run -i 12 +[55] [Step Debug] <- run -i 12 +[79] [Step Debug] <- run -i 12 +[67] [Step Debug] <- run -i 12 +[77] [Step Debug] <- run -i 12 +[24] [Step Debug] <- run -i 12 +[67] [Step Debug] -> + +[67] Log closed at 2024-03-26 19:03:53.746582 + +[67] Log opened at 2024-03-26 19:03:53.748483 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- run -i 4 +[77] [Step Debug] -> + +[77] Log closed at 2024-03-26 19:03:53.780533 + +[77] Log opened at 2024-03-26 19:03:53.782496 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 19:03:53.821548 + +[24] Log opened at 2024-03-26 19:03:53.824348 +[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] -> + +[79] [Step Debug] -> + +[79] Log closed at 2024-03-26 19:03:53.851389 + +[79] Log opened at 2024-03-26 19:03:53.853119 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[79] [Step Debug] -> + +[77] [Step Debug] <- run -i 5 +[24] [Step Debug] <- run -i 5 +[79] [Step Debug] <- run -i 5 +[76] [Step Debug] -> + +[76] Log closed at 2024-03-26 19:03:53.889847 + +[76] Log opened at 2024-03-26 19:03:53.892392 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 464 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[76] [Step Debug] -> + +[55] [Step Debug] -> + +[55] Log closed at 2024-03-26 19:03:53.997104 + +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[67] Log closed at 2024-03-26 19:03:54.059683 + +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[79] [Step Debug] -> + +[79] Log closed at 2024-03-26 19:03:54.118693 + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-26 19:03:54.162097 + +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[77] [Step Debug] -> + +[77] Log closed at 2024-03-26 19:03:54.207437 + +[76] [Step Debug] <- stop -i 16 +[76] [Step Debug] -> + +[74] Log opened at 2024-03-26 19:03:59.838325 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:04:00.089168 + +[74] Log opened at 2024-03-26 19:04:00.733228 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log opened at 2024-03-26 19:04:00.906723 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] Log opened at 2024-03-26 19:04:00.924708 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 19:04:00.953316 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] Log opened at 2024-03-26 19:04:01.105710 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:04:01.150677 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:04:01.231264 + +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:04:01.369250 + +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 19:04:01.519816 + +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:04:01.635500 + +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-03-26 19:04:01.739581 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:04:01.827560 + +[79] Log opened at 2024-03-26 19:04:09.388260 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-03-26 19:04:09.823646 + +[79] Log opened at 2024-03-26 19:04:10.819514 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-03-26 19:04:11.276443 + +[79] Log opened at 2024-03-26 19:04:11.518949 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-03-26 19:04:11.955941 + +[79] Log opened at 2024-03-26 19:04:12.481113 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-03-26 19:04:12.891423 + +[79] Log opened at 2024-03-26 19:04:13.776031 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [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-03-26 19:04:13.795149 +[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. +[79] [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). +[79] [Step Debug] ERR: Could not connect to debugging 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-03-26 19:04:14.204250 + +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-03-26 19:04:14.327281 + +[77] Log opened at 2024-03-26 19:04:19.540096 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 19:04:19.942690 + +[77] Log opened at 2024-03-26 19:04:21.780784 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 19:04:22.270855 + +[77] Log opened at 2024-03-26 19:04:25.458758 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 19:04:25.890199 + +[77] Log opened at 2024-03-26 19:04:28.158257 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 19:04:28.567281 + +[77] Log opened at 2024-03-26 19:04:31.160459 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 19:04:31.564721 + +[77] Log opened at 2024-03-26 19:04:32.816735 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 19:04:33.249731 + +[81] Log opened at 2024-03-26 19:04:43.410441 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-03-26 19:04:43.873741 + +[81] Log opened at 2024-03-26 19:04:45.513797 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-03-26 19:04:45.933902 + +[81] Log opened at 2024-03-26 19:04:49.965348 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-03-26 19:04:50.380263 + +[74] Log opened at 2024-03-26 19:06:14.101748 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:06:14.543449 + +[78] Log opened at 2024-03-26 19:10:09.250734 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:10:09.706156 + +[78] Log opened at 2024-03-26 19:10:10.413581 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:10:11.928663 + +[78] Log opened at 2024-03-26 19:10:12.140156 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log opened at 2024-03-26 19:10:12.142613 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] Log opened at 2024-03-26 19:10:12.142982 +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] Log opened at 2024-03-26 19:10:12.143556 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:10:12.143634 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] Log opened at 2024-03-26 19:10:12.143855 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging 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). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:10:12.638674 + +[63] Log opened at 2024-03-26 19:10:12.640796 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging 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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:10:12.722409 + +[55] Log opened at 2024-03-26 19:10:12.724427 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging 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] Log closed at 2024-03-26 19:10:12.805627 + +[24] Log opened at 2024-03-26 19:10:12.807407 +[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. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging 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). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:10:12.921633 + +[78] Log opened at 2024-03-26 19:10:12.923747 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 19:10:12.994774 + +[75] Log opened at 2024-03-26 19:10:12.996619 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-03-26 19:10:13.088721 + +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:10:13.158768 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log closed at 2024-03-26 19:10:13.203831 + +[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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:10:13.254556 + +[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. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [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). +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [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-03-26 19:10:13.341969 + +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:10:13.390368 + +[78] Log opened at 2024-03-26 19:10:13.849271 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log opened at 2024-03-26 19:10:14.025400 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 19:10:14.039626 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log opened at 2024-03-26 19:10:14.080503 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [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-03-26 19:10:14.199857 +[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. +[75] Log opened at 2024-03-26 19:10:14.203361 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] ERR: Could not connect to debugging 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). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:10:14.327017 + +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:10:14.485023 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:10:14.612113 + +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [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. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-03-26 19:10:14.745886 + +[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. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [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-03-26 19:10:14.827161 + +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 19:10:14.915381 + +[78] Log opened at 2024-03-26 19:10:18.979501 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:10:19.408835 + +[77] Log opened at 2024-03-26 19:10:25.869660 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 19:10:26.324636 + +[77] Log opened at 2024-03-26 19:10:27.941907 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 19:10:28.359405 + +[77] Log opened at 2024-03-26 19:10:30.123253 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 19:10:30.549776 + +[77] Log opened at 2024-03-26 19:10:31.580384 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 19:10:32.012455 + +[77] Log opened at 2024-03-26 19:10:32.119842 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log opened at 2024-03-26 19:10:32.192033 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[81] Log opened at 2024-03-26 19:10:32.191978 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-03-26 19:10:32.192838 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 19:10:32.207890 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:10:32.209965 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 19:10:32.589401 + +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-03-26 19:10:32.699345 + +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] Log opened at 2024-03-26 19:10:32.719718 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[81] Log opened at 2024-03-26 19:10:32.719570 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:10:32.838702 + +[63] Log opened at 2024-03-26 19:10:32.840402 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:10:32.919359 + +[82] Log opened at 2024-03-26 19:10:32.921513 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:10:33.048768 + +[55] Log opened at 2024-03-26 19:10:33.066199 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:10:33.145844 + +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-03-26 19:10:33.231939 + +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-03-26 19:10:33.312454 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:10:33.383372 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:10:33.464008 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-03-26 19:10:33.520001 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:10:33.539529 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log opened at 2024-03-26 19:10:33.570779 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:10:33.943868 + +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-03-26 19:10:34.036453 + +[24] Log opened at 2024-03-26 19:10:40.597093 +[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-03-26 19:10:41.119256 + +[24] Log opened at 2024-03-26 19:10:41.293782 +[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-03-26 19:10:41.504227 + +[75] Log opened at 2024-03-26 19:10:41.817077 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log opened at 2024-03-26 19:10:41.909305 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 19:10:42.169037 + +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:10:42.359391 + +[75] Log opened at 2024-03-26 19:10:44.049043 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 19:10:44.475960 + +[75] Log opened at 2024-03-26 19:10:45.712899 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 19:10:46.165586 + +[75] Log opened at 2024-03-26 19:10:46.236796 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log opened at 2024-03-26 19:10:46.290259 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] Log opened at 2024-03-26 19:10:46.291807 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [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-03-26 19:10:46.296322 +[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. +[63] Log opened at 2024-03-26 19:10:46.305082 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:10:46.308471 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging 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). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [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. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 19:10:46.686583 + +[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. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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). +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log closed at 2024-03-26 19:10:46.777534 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:10:46.886473 + +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log opened at 2024-03-26 19:10:46.897364 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[55] Log opened at 2024-03-26 19:10:46.897486 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] Log opened at 2024-03-26 19:10:46.897640 +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [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. +[55] [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). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:10:47.008093 + +[63] Log opened at 2024-03-26 19:10:47.009841 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:10:47.094191 + +[78] Log opened at 2024-03-26 19:10:47.095601 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:10:47.191614 + +[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. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [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-03-26 19:10:47.313923 + +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 19:10:47.391666 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:10:47.497505 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:10:47.580505 + +[75] Log opened at 2024-03-26 19:10:47.603039 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:10:47.664786 + +[78] Log opened at 2024-03-26 19:10:47.693264 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 19:10:48.009315 + +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:10:48.089205 + +[75] Log opened at 2024-03-26 19:10:50.105372 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 19:10:54.882357 + +[75] Log opened at 2024-03-26 19:10:55.056180 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 19:10:56.311216 + +[75] Log opened at 2024-03-26 19:10:56.613271 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-03-26 19:10:56.853080 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] Log opened at 2024-03-26 19:10:56.870575 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] Log opened at 2024-03-26 19:10:56.886587 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 19:10:56.997350 + +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-03-26 19:10:57.291074 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:10:57.377804 + +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:10:57.466676 + +[84] Log opened at 2024-03-26 19:11:04.207616 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-03-26 19:11:04.686498 + +[84] Log opened at 2024-03-26 19:11:08.114194 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-03-26 19:11:08.564835 + +[84] Log opened at 2024-03-26 19:11:09.052989 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-03-26 19:11:09.481825 + +[83] Log opened at 2024-03-26 19:11:15.274238 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:11:15.737308 + +[83] Log opened at 2024-03-26 19:11:15.820095 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:11:16.250327 + +[83] Log opened at 2024-03-26 19:11:17.420783 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [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-03-26 19:11:17.425999 +[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. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging 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). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:11:17.889591 + +[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-03-26 19:11:18.019222 + +[83] Log opened at 2024-03-26 19:11:18.587740 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [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-03-26 19:11:18.587780 +[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. +[55] Log opened at 2024-03-26 19:11:18.593902 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 19:11:18.594651 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] Log opened at 2024-03-26 19:11:18.595626 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log opened at 2024-03-26 19:11:18.601431 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Could not connect to debugging 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). +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:11:18.984944 + +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:11:19.089741 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:11:19.173088 + +[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. +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [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-03-26 19:11:19.258383 + +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:11:19.345643 + +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-03-26 19:11:19.434315 + +[83] Log opened at 2024-03-26 19:11:19.470571 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:11:19.888904 + +[82] Log opened at 2024-03-26 19:12:10.294147 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:12:10.744476 + +[82] Log opened at 2024-03-26 19:12:10.769135 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:12:11.255023 + +[74] Log opened at 2024-03-26 19:12:11.285725 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-03-26 19:12:11.286524 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:12:11.727271 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:12:11.830692 + +[84] Log opened at 2024-03-26 19:12:20.813911 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-03-26 19:12:22.309423 + +[84] Log opened at 2024-03-26 19:12:22.535770 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-03-26 19:12:22.536429 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] Log opened at 2024-03-26 19:12:22.538250 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[55] Log opened at 2024-03-26 19:12:22.538149 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 19:12:22.538638 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[24] Log opened at 2024-03-26 19:12:22.538764 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [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. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] 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). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:12:22.991363 + +[78] Log opened at 2024-03-26 19:12:22.993339 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:12:23.101435 + +[85] Log opened at 2024-03-26 19:12:23.104657 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:12:23.189695 + +[55] Log opened at 2024-03-26 19:12:23.191409 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-03-26 19:12:23.267448 + +[84] Log opened at 2024-03-26 19:12:23.269710 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [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. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 19:12:23.351321 + +[24] Log opened at 2024-03-26 19:12:23.353377 +[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. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:12:23.441553 + +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [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. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging 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. +[78] Log closed at 2024-03-26 19:12:23.515540 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [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). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log closed at 2024-03-26 19:12:23.572728 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:12:23.603363 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:12:23.685003 + +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-03-26 19:12:23.767727 + +[63] Log opened at 2024-03-26 19:12:24.272454 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log opened at 2024-03-26 19:12:24.445895 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:12:24.464617 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-26 19:12:24.496286 +[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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging 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). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-03-26 19:12:24.652060 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] Log opened at 2024-03-26 19:12:24.656425 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:12:24.762225 + +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:12:24.901715 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:12:25.039246 + +[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. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [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-03-26 19:12:25.171382 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:12:25.276121 + +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-03-26 19:12:25.354889 + +[83] Log opened at 2024-03-26 19:12:33.679157 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:12:34.106942 + +[83] Log opened at 2024-03-26 19:12:35.754834 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:12:36.176609 + +[83] Log opened at 2024-03-26 19:12:37.905548 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:12:38.328079 + +[83] Log opened at 2024-03-26 19:12:39.325220 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:12:39.770030 + +[83] Log opened at 2024-03-26 19:12:43.465730 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:12:43.900018 + +[83] Log opened at 2024-03-26 19:12:45.316721 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:12:45.754314 + +[74] Log opened at 2024-03-26 19:13:00.906601 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:13:01.353794 + +[74] Log opened at 2024-03-26 19:13:04.405077 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:13:04.821263 + +[74] Log opened at 2024-03-26 19:13:05.688301 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:13:06.180461 + +[74] Log opened at 2024-03-26 19:13:08.795830 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:13:09.273784 + +[74] Log opened at 2024-03-26 19:13:09.592127 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:13:10.013803 + +[74] Log opened at 2024-03-26 19:13:10.998398 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-03-26 19:13:11.019027 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:13:11.446342 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:13:11.568692 + +[74] Log opened at 2024-03-26 19:13:15.897044 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:13:16.321056 + +[74] Log opened at 2024-03-26 19:13:17.782087 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:13:18.206751 + +[74] Log opened at 2024-03-26 19:13:18.969885 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:13:19.426440 + +[86] Log opened at 2024-03-26 19:13:32.059718 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:13:33.540147 + +[86] Log opened at 2024-03-26 19:13:33.763015 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 19:13:33.768694 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[78] Log opened at 2024-03-26 19:13:33.768645 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:13:33.769517 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-03-26 19:13:33.770667 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[24] Log opened at 2024-03-26 19:13:33.770311 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1: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. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [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 '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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] 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. +[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). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:13:34.019256 + +[86] Log opened at 2024-03-26 19:13:34.021882 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [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. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:13:34.205777 + +[85] Log opened at 2024-03-26 19:13:34.207962 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [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. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 19:13:34.282719 + +[24] Log opened at 2024-03-26 19:13:34.285161 +[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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:13:34.370126 + +[55] Log opened at 2024-03-26 19:13:34.371931 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:13:34.444553 + +[78] Log opened at 2024-03-26 19:13:34.446438 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:13:34.575766 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:13:34.668445 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [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. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:13:34.754933 + +[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. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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-03-26 19:13:34.833908 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:13:34.920464 + +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:13:35.010347 + +[85] Log opened at 2024-03-26 19:13:35.084649 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log opened at 2024-03-26 19:13:35.254196 +[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. +[55] Log opened at 2024-03-26 19:13:35.272898 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 19:13:35.299887 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging 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). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] Log opened at 2024-03-26 19:13:35.493592 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-03-26 19:13:35.497552 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:13:35.589988 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:13:35.715049 + +[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-03-26 19:13:35.857282 + +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:13:35.987103 + +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:13:36.081689 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:13:36.184597 + +[83] Log opened at 2024-03-26 19:13:48.263833 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:13:48.709172 + +[82] Log opened at 2024-03-26 19:13:48.734385 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:13:49.216214 + +[82] Log opened at 2024-03-26 19:13:49.247918 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] Log opened at 2024-03-26 19:13:49.250571 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:13:49.658895 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:13:49.737383 + +[83] Log opened at 2024-03-26 19:13:54.488892 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-03-26 19:13:54.498370 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] Log opened at 2024-03-26 19:13:54.503132 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] Log opened at 2024-03-26 19:13:54.514578 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:13:54.949091 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:13:55.027702 + +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-03-26 19:13:55.102482 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] Log opened at 2024-03-26 19:13:55.102693 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-03-26 19:13:55.103620 +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:13:55.124081 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:13:55.157440 + +[83] Log opened at 2024-03-26 19:13:55.159806 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:13:55.277222 + +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-03-26 19:13:55.528448 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:13:55.612783 + +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:13:55.731663 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-03-26 19:13:55.758225 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:13:55.853069 + +[55] Log opened at 2024-03-26 19:13:55.874336 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:13:55.933617 + +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:13:56.178481 + +[82] Log opened at 2024-03-26 19:13:56.198563 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:13:56.255489 + +[85] Log opened at 2024-03-26 19:13:56.276710 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:13:56.599738 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:13:56.681309 + +[82] Log opened at 2024-03-26 19:14:01.186437 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:01.641506 + +[82] Log opened at 2024-03-26 19:14:02.384284 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:02.808441 + +[82] Log opened at 2024-03-26 19:14:03.838170 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [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-03-26 19:14:03.856160 +[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. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging 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. +[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-03-26 19:14:04.273756 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:04.416694 + +[82] Log opened at 2024-03-26 19:14:08.413731 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:08.822647 + +[82] Log opened at 2024-03-26 19:14:09.665896 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 19:14:09.679092 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:14:10.118802 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:10.234643 + +[82] Log opened at 2024-03-26 19:14:14.157645 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 19:14:14.162541 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-03-26 19:14:14.167483 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[78] Log opened at 2024-03-26 19:14:14.167037 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] Log opened at 2024-03-26 19:14:14.179583 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] Log opened at 2024-03-26 19:14:14.180101 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:14.588340 + +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:14:14.678100 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-03-26 19:14:14.707104 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] Log opened at 2024-03-26 19:14:14.707441 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:14:14.760996 + +[63] Log opened at 2024-03-26 19:14:14.762627 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:14:14.876624 + +[87] Log opened at 2024-03-26 19:14:14.891643 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:14:14.955666 + +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:14:15.099548 + +[88] Log opened at 2024-03-26 19:14:15.116087 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:14:15.186428 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:15.292928 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:14:15.397341 + +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:14:15.477380 + +[82] Log opened at 2024-03-26 19:14:15.502976 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:14:15.565253 + +[78] Log opened at 2024-03-26 19:14:15.583979 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:15.930860 + +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-03-26 19:14:16.018046 + +[83] Log opened at 2024-03-26 19:14:21.770874 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:14:22.183519 + +[83] Log opened at 2024-03-26 19:14:24.007876 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-03-26 19:14:24.424747 + +[55] Log opened at 2024-03-26 19:14:29.910294 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-03-26 19:14:29.913902 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-03-26 19:14:29.914439 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [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-03-26 19:14:29.914426 +[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. +[63] Log opened at 2024-03-26 19:14:29.939725 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] Log opened at 2024-03-26 19:14:29.941448 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging 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). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:14:30.366563 + +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:14:30.469775 + +[55] Log opened at 2024-03-26 19:14:30.486579 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] Log opened at 2024-03-26 19:14:30.497169 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:14:30.546836 + +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-03-26 19:14:30.549162 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:14:30.661186 + +[88] Log opened at 2024-03-26 19:14:30.662815 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [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. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [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-03-26 19:14:30.749584 + +[63] Log opened at 2024-03-26 19:14:30.751491 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:14:30.837957 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:14:30.908329 + +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:14:31.042981 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:14:31.130653 + +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:14:31.207822 + +[88] Log opened at 2024-03-26 19:14:31.234950 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:14:31.296530 + +[55] Log opened at 2024-03-26 19:14:31.316751 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:14:31.659691 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:14:31.739097 + +[82] Log opened at 2024-03-26 19:14:37.104169 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:37.541542 + +[82] Log opened at 2024-03-26 19:14:38.936527 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:39.359304 + +[82] Log opened at 2024-03-26 19:14:40.858801 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:41.282065 + +[82] Log opened at 2024-03-26 19:14:42.052853 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:42.547760 + +[82] Log opened at 2024-03-26 19:14:46.803412 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:47.230376 + +[82] Log opened at 2024-03-26 19:14:50.446095 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:50.865206 + +[82] Log opened at 2024-03-26 19:14:52.352709 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:52.783256 + +[82] Log opened at 2024-03-26 19:14:53.583878 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:14:54.011544 + +[90] Log opened at 2024-03-26 19:15:03.598962 +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] Log opened at 2024-03-26 19:15:03.602096 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [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-03-26 19:15:03.619159 +[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. +[85] Log opened at 2024-03-26 19:15:03.625820 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] Log opened at 2024-03-26 19:15:03.629641 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [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. +[90] [Step Debug] ERR: Could not connect to debugging 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). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] Log closed at 2024-03-26 19:15:04.057851 + +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:15:04.323581 + +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-03-26 19:15:04.464164 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] Log opened at 2024-03-26 19:15:04.464632 +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-03-26 19:15:04.471954 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:15:04.521429 + +[87] Log opened at 2024-03-26 19:15:04.523157 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-03-26 19:15:04.657024 + +[91] Log opened at 2024-03-26 19:15:04.659317 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [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. +[91] [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). +[91] [Step Debug] ERR: Could not connect to debugging 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. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [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-03-26 19:15:04.788819 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [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-03-26 19:15:04.852182 +[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. +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log closed at 2024-03-26 19:15:04.883348 + +[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). +[85] Log opened at 2024-03-26 19:15:04.916055 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] Log closed at 2024-03-26 19:15:05.022694 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] Log opened at 2024-03-26 19:15:05.024463 +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:15:05.084709 + +[86] Log opened at 2024-03-26 19:15:05.086298 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:15:05.221016 + +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-03-26 19:15:05.395869 + +[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. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [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-03-26 19:15:05.545554 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log closed at 2024-03-26 19:15:05.625452 + +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[24] Log opened at 2024-03-26 19:15:05.682893 +[85] Log opened at 2024-03-26 19:15:05.683157 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [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'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [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. +[85] [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). +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [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. +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-03-26 19:15:05.684336 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging 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). +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] Log closed at 2024-03-26 19:15:05.745903 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:15:05.835756 + +[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. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [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-03-26 19:15:06.086233 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:15:06.162474 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-03-26 19:15:06.250578 + +[88] Log opened at 2024-03-26 19:15:12.329173 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:15:12.745090 + +[88] Log opened at 2024-03-26 19:15:14.307075 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:15:14.732401 + +[88] Log opened at 2024-03-26 19:15:16.415295 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:15:16.830544 + +[88] Log opened at 2024-03-26 19:15:17.538649 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:15:17.984308 + +[88] Log opened at 2024-03-26 19:15:18.065732 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log opened at 2024-03-26 19:15:18.132100 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[87] Log opened at 2024-03-26 19:15:18.132857 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[82] Log opened at 2024-03-26 19:15:18.132466 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:15:18.537665 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:15:18.622971 + +[55] Log closed at 2024-03-26 19:15:18.623072 + +[88] Log opened at 2024-03-26 19:15:18.661419 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[87] Log opened at 2024-03-26 19:15:18.661090 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[55] Log opened at 2024-03-26 19:15:18.661295 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:15:18.750191 + +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:15:19.083007 + +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:15:19.169399 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:15:19.244005 + +[88] Log opened at 2024-03-26 19:15:20.555304 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] Log opened at 2024-03-26 19:15:20.562234 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] Log opened at 2024-03-26 19:15:20.563428 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-03-26 19:15:20.565768 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] Log opened at 2024-03-26 19:15:20.571299 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] Log opened at 2024-03-26 19:15:20.574087 +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:15:20.965523 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:15:21.047214 + +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:15:21.129304 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:15:21.205186 + +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] Log closed at 2024-03-26 19:15:21.311874 + +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:15:21.348119 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-03-26 19:15:21.393164 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:15:21.760766 + +[88] Log opened at 2024-03-26 19:15:23.929089 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:15:25.392978 + +[87] Log opened at 2024-03-26 19:15:25.630859 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] Log opened at 2024-03-26 19:15:25.635510 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[90] Log opened at 2024-03-26 19:15:25.635768 +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] Log opened at 2024-03-26 19:15:25.635507 +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[55] Log opened at 2024-03-26 19:15:25.635427 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] Log opened at 2024-03-26 19:15:25.636066 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:15:25.920510 + +[87] Log opened at 2024-03-26 19:15:25.922587 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] Log closed at 2024-03-26 19:15:26.093164 + +[90] Log opened at 2024-03-26 19:15:26.095196 +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-03-26 19:15:26.191131 + +[91] Log opened at 2024-03-26 19:15:26.193486 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:15:26.330291 + +[55] Log opened at 2024-03-26 19:15:26.332753 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:15:26.407582 + +[82] Log opened at 2024-03-26 19:15:26.410056 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:15:26.495641 + +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:15:26.594331 + +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] Log closed at 2024-03-26 19:15:26.683393 + +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] Log closed at 2024-03-26 19:15:26.813522 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:15:26.872005 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:15:26.968374 + +[87] Log opened at 2024-03-26 19:15:27.038762 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log opened at 2024-03-26 19:15:27.209361 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-03-26 19:15:27.236902 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log opened at 2024-03-26 19:15:27.402127 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:15:27.553537 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:15:27.701012 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:15:27.821315 + +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:15:27.942973 + +[87] Log opened at 2024-03-26 19:15:31.769002 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:15:32.196812 + +[87] Log opened at 2024-03-26 19:15:33.422006 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-03-26 19:15:33.436949 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:15:33.854077 + +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:15:33.989702 + +[87] Log opened at 2024-03-26 19:15:35.229165 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:15:35.642564 + +[87] Log opened at 2024-03-26 19:15:36.452734 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-03-26 19:15:36.473021 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:15:36.934495 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:15:37.033752 + +[91] Log opened at 2024-03-26 19:21:01.830426 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 464 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 13 +[91] [Step Debug] -> + +[91] Log closed at 2024-03-26 19:21:02.584600 + +[91] Log opened at 2024-03-26 19:21:02.754054 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 464 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 13 +[91] [Step Debug] -> + +[91] Log closed at 2024-03-26 19:21:02.912954 + +[91] Log opened at 2024-03-26 19:21:03.212075 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 464 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 13 +[55] Log opened at 2024-03-26 19:21:03.512763 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 464 +[55] [Step Debug] -> + +[82] Log opened at 2024-03-26 19:21:03.524245 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[82] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[55] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[82] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[88] Log opened at 2024-03-26 19:21:03.542374 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[91] [Step Debug] -> + +[91] Log closed at 2024-03-26 19:21:03.562528 + +[55] [Step Debug] <- run -i 13 +[82] [Step Debug] <- run -i 10 +[88] [Step Debug] <- run -i 5 +[55] [Step Debug] -> + +[55] Log closed at 2024-03-26 19:21:03.967195 + +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[88] [Step Debug] -> + +[88] Log closed at 2024-03-26 19:21:04.003812 + +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[82] [Step Debug] -> + +[82] Log closed at 2024-03-26 19:21:04.071972 + +[91] Log opened at 2024-03-26 19:21:04.924702 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 464 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 13 +[91] [Step Debug] -> + +[91] [Step Debug] -> + +[91] [Step Debug] <- stack_get -i 14 +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 17 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[91] [Step Debug] -> + +[91] [Step Debug] <- context_names -i 18 -d 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 20 +[91] [Step Debug] -> + +[91] [Step Debug] <- stack_get -i 21 +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 23 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[91] [Step Debug] -> + +[91] [Step Debug] <- context_names -i 25 -d 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 27 +[91] [Step Debug] -> + +[91] [Step Debug] <- stack_get -i 28 +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 29 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 30 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 31 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[91] [Step Debug] -> + +[91] [Step Debug] <- context_names -i 32 -d 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- context_get -i 33 -d 0 -c 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 34 +[91] [Step Debug] -> + +[91] [Step Debug] <- stack_get -i 35 +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 37 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 38 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[91] [Step Debug] -> + +[91] [Step Debug] <- context_names -i 39 -d 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 41 +[91] [Step Debug] -> + +[91] [Step Debug] <- stack_get -i 42 +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 43 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 45 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[91] [Step Debug] -> + +[91] [Step Debug] <- context_names -i 46 -d 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 48 +[91] [Step Debug] -> + +[91] [Step Debug] <- stack_get -i 49 +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 50 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 51 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 52 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[91] [Step Debug] -> + +[91] [Step Debug] <- context_names -i 53 -d 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- context_get -i 54 -d 0 -c 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 55 +[91] [Step Debug] -> + +[91] [Step Debug] <- stack_get -i 56 +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 57 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 58 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 59 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[91] [Step Debug] -> + +[91] [Step Debug] <- context_names -i 60 -d 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- context_get -i 61 -d 0 -c 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 62 +[91] [Step Debug] -> + +[91] [Step Debug] <- stack_get -i 63 +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 64 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 65 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 66 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[91] [Step Debug] -> + +[91] [Step Debug] <- context_names -i 67 -d 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- context_get -i 68 -d 0 -c 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- property_get -i 69 -n "$data[0]" -d 0 -c 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 70 +[91] [Step Debug] -> + +[91] [Step Debug] <- stack_get -i 71 +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 72 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 73 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 74 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[91] [Step Debug] -> + +[91] [Step Debug] <- context_names -i 75 -d 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- context_get -i 76 -d 0 -c 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- property_get -i 77 -n "$data[0]" -d 0 -c 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 78 +[91] [Step Debug] -> + +[91] [Step Debug] -> + +[91] [Step Debug] <- stack_get -i 79 +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 80 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 81 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[91] [Step Debug] -> + +[91] [Step Debug] <- eval -i 82 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[91] [Step Debug] -> + +[91] [Step Debug] <- context_names -i 83 -d 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- context_get -i 84 -d 0 -c 0 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_remove -i 85 -d 910027 +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 86 +[91] [Step Debug] -> + +[91] Log closed at 2024-03-26 19:22:15.314483 + +[91] Log opened at 2024-03-26 19:22:15.606877 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[86] Log opened at 2024-03-26 19:22:15.612646 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[86] [Step Debug] -> + +[87] Log opened at 2024-03-26 19:22:15.612759 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[91] [Step Debug] -> + +[87] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[87] [Step Debug] -> + +[85] Log opened at 2024-03-26 19:22:15.613725 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] Log opened at 2024-03-26 19:22:15.614049 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[85] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[85] [Step Debug] -> + +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[63] [Step Debug] -> + +[92] Log opened at 2024-03-26 19:22:15.615440 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[86] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[86] [Step Debug] -> + +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[87] [Step Debug] -> + +[92] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[87] [Step Debug] -> + +[92] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[86] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[87] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[91] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[87] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[86] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[87] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[85] [Step Debug] -> + +[63] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[92] [Step Debug] -> + +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[86] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[91] [Step Debug] -> + +[86] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[86] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[87] [Step Debug] -> + +[86] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[85] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[87] [Step Debug] -> + +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[85] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[63] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[92] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[85] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[63] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[86] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[87] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[91] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[91] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[86] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[87] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[86] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[87] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[87] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[87] [Step Debug] -> + +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[85] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[92] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[85] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[63] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[92] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[85] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[92] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[87] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[86] [Step Debug] -> + +[87] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[85] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[92] [Step Debug] -> + +[91] [Step Debug] <- run -i 12 +[86] [Step Debug] <- run -i 12 +[87] [Step Debug] <- run -i 12 +[85] [Step Debug] <- run -i 12 +[63] [Step Debug] <- run -i 12 +[92] [Step Debug] <- run -i 12 +[91] [Step Debug] -> + +[91] Log closed at 2024-03-26 19:22:15.800809 + +[91] Log opened at 2024-03-26 19:22:15.804069 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 5 +[87] [Step Debug] -> + +[87] Log closed at 2024-03-26 19:22:16.147066 + +[87] Log opened at 2024-03-26 19:22:16.149346 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- run -i 5 +[63] [Step Debug] -> + +[63] Log closed at 2024-03-26 19:22:16.190230 + +[63] Log opened at 2024-03-26 19:22:16.192302 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[85] [Step Debug] -> + +[85] Log closed at 2024-03-26 19:22:16.230829 + +[85] Log opened at 2024-03-26 19:22:16.232936 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[85] [Step Debug] -> + +[86] [Step Debug] -> + +[86] Log closed at 2024-03-26 19:22:16.262292 + +[86] Log opened at 2024-03-26 19:22:16.264182 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[86] [Step Debug] -> + +[63] [Step Debug] <- run -i 5 +[85] [Step Debug] <- run -i 5 +[86] [Step Debug] <- run -i 5 +[92] [Step Debug] -> + +[92] Log closed at 2024-03-26 19:22:16.318675 + +[91] [Step Debug] -> + +[91] Log closed at 2024-03-26 19:22:16.345631 + +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[87] [Step Debug] -> + +[87] Log closed at 2024-03-26 19:22:16.471196 + +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[85] [Step Debug] -> + +[85] Log closed at 2024-03-26 19:22:16.523500 + +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[86] [Step Debug] -> + +[86] Log closed at 2024-03-26 19:22:16.622986 + +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] -> + +[63] Log closed at 2024-03-26 19:22:16.648775 + +[92] Log opened at 2024-03-26 19:22:16.799107 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[92] [Step Debug] -> + +[92] [Step Debug] <- run -i 12 +[87] Log opened at 2024-03-26 19:22:16.936444 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[87] [Step Debug] -> + +[63] Log opened at 2024-03-26 19:22:16.966640 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[87] [Step Debug] <- run -i 12 +[63] [Step Debug] <- run -i 5 +[85] Log opened at 2024-03-26 19:22:17.087031 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[85] [Step Debug] -> + +[85] [Step Debug] <- run -i 5 +[92] [Step Debug] -> + +[92] Log closed at 2024-03-26 19:22:17.180441 + +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] -> + +[63] Log closed at 2024-03-26 19:22:17.382022 + +[87] [Step Debug] -> + +[87] Log closed at 2024-03-26 19:22:17.452156 + +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[85] [Step Debug] -> + +[85] Log closed at 2024-03-26 19:22:17.500474 + +[55] Log opened at 2024-03-26 19:22:27.735611 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 12 +[55] [Step Debug] -> + +[55] Log closed at 2024-03-26 19:22:28.236468 + +[88] Log opened at 2024-03-26 19:22:28.434445 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[88] [Step Debug] -> + +[88] [Step Debug] <- run -i 12 +[88] [Step Debug] -> + +[88] Log closed at 2024-03-26 19:22:28.584603 + +[88] Log opened at 2024-03-26 19:22:29.039925 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[88] [Step Debug] -> + +[88] [Step Debug] <- run -i 12 +[55] Log opened at 2024-03-26 19:22:29.263014 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[88] [Step Debug] -> + +[88] Log closed at 2024-03-26 19:22:29.364946 + +[55] [Step Debug] <- run -i 12 +[55] [Step Debug] -> + +[55] Log closed at 2024-03-26 19:22:29.676204 + +[93] Log opened at 2024-03-26 19:22:46.521620 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[93] [Step Debug] -> + +[93] [Step Debug] <- run -i 12 +[93] [Step Debug] -> + +[93] Log closed at 2024-03-26 19:22:46.936307 + +[91] Log opened at 2024-03-26 19:23:04.567303 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 12 +[91] [Step Debug] -> + +[91] Log closed at 2024-03-26 19:23:04.935526 + +[91] Log opened at 2024-03-26 19:23:05.763506 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 12 +[91] [Step Debug] -> + +[91] Log closed at 2024-03-26 19:23:06.152689 + +[86] Log opened at 2024-03-26 19:23:20.609822 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[86] [Step Debug] -> + +[86] [Step Debug] <- run -i 12 +[86] [Step Debug] -> + +[86] [Step Debug] -> + +[86] Log closed at 2024-03-26 19:23:21.363389 + +[86] Log opened at 2024-03-26 19:23:21.592545 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[86] [Step Debug] -> + +[86] [Step Debug] <- run -i 12 +[86] [Step Debug] -> + +[86] Log closed at 2024-03-26 19:23:21.749847 + +[92] Log opened at 2024-03-26 19:23:22.280760 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[92] [Step Debug] -> + +[92] [Step Debug] <- run -i 12 +[92] [Step Debug] -> + +[92] Log closed at 2024-03-26 19:23:22.589548 + +[92] Log opened at 2024-03-26 19:23:22.615715 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[92] [Step Debug] -> + +[86] Log opened at 2024-03-26 19:23:22.631011 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[86] [Step Debug] -> + +[63] Log opened at 2024-03-26 19:23:22.647817 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[92] [Step Debug] <- run -i 12 +[86] [Step Debug] <- run -i 5 +[63] [Step Debug] <- run -i 5 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] -> + +[63] Log closed at 2024-03-26 19:23:22.971427 + +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[86] [Step Debug] -> + +[86] Log closed at 2024-03-26 19:23:23.020856 + +[92] [Step Debug] -> + +[92] Log closed at 2024-03-26 19:23:23.071605 + +[87] Log opened at 2024-03-26 19:23:32.014661 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[87] [Step Debug] -> + +[87] [Step Debug] <- run -i 12 +[87] [Step Debug] -> + +[87] Log closed at 2024-03-26 19:23:32.390121 + +[87] Log opened at 2024-03-26 19:23:33.161599 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[87] [Step Debug] -> + +[87] [Step Debug] <- run -i 12 +[87] [Step Debug] -> + +[87] Log closed at 2024-03-26 19:23:33.527894 + +[87] Log opened at 2024-03-26 19:23:34.542182 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[87] [Step Debug] -> + +[87] [Step Debug] <- run -i 12 +[87] [Step Debug] -> + +[87] Log closed at 2024-03-26 19:23:34.911883 + +[87] Log opened at 2024-03-26 19:23:35.636753 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[87] [Step Debug] -> + +[87] [Step Debug] <- run -i 12 +[87] [Step Debug] -> + +[87] Log closed at 2024-03-26 19:23:36.005005 + +[85] Log opened at 2024-03-26 19:31:00.027590 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[85] [Step Debug] -> + +[85] [Step Debug] <- run -i 12 +[85] [Step Debug] -> + +[85] [Step Debug] -> + +[85] Log closed at 2024-03-26 19:31:00.739216 + +[85] Log opened at 2024-03-26 19:31:00.953960 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[85] [Step Debug] -> + +[85] [Step Debug] <- run -i 12 +[85] [Step Debug] -> + +[85] Log closed at 2024-03-26 19:31:01.111837 + +[85] Log opened at 2024-03-26 19:31:01.665550 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[85] [Step Debug] -> + +[85] [Step Debug] <- run -i 12 +[85] [Step Debug] -> + +[85] Log closed at 2024-03-26 19:31:01.958080 + +[88] Log opened at 2024-03-26 19:31:01.961460 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[88] [Step Debug] -> + +[85] Log opened at 2024-03-26 19:31:01.982612 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[85] [Step Debug] -> + +[55] Log opened at 2024-03-26 19:31:02.022770 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[88] [Step Debug] <- run -i 12 +[85] [Step Debug] <- run -i 5 +[55] [Step Debug] <- run -i 5 +[88] [Step Debug] -> + +[88] Log closed at 2024-03-26 19:31:02.360892 + +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[55] [Step Debug] -> + +[55] Log closed at 2024-03-26 19:31:02.405216 + +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[85] [Step Debug] -> + +[85] Log closed at 2024-03-26 19:31:02.455512 + +[82] Log opened at 2024-03-26 19:31:14.141438 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 12 +[82] [Step Debug] -> + +[82] Log closed at 2024-03-26 19:31:14.624406 + +[82] Log opened at 2024-03-26 19:31:15.334287 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 12 +[93] Log opened at 2024-03-26 19:31:15.583351 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[93] [Step Debug] -> + +[82] [Step Debug] -> + +[82] Log closed at 2024-03-26 19:31:15.610739 + +[93] [Step Debug] <- run -i 12 +[93] [Step Debug] -> + +[93] Log closed at 2024-03-26 19:31:15.968443 + +[93] Log opened at 2024-03-26 19:31:16.935563 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelGenericoModel.php -n 150 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[93] [Step Debug] -> + +[93] [Step Debug] <- run -i 12 +[93] [Step Debug] -> + +[93] [Step Debug] -> + +[93] [Step Debug] <- stack_get -i 13 +[93] [Step Debug] -> + +[93] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[93] [Step Debug] -> + +[93] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[93] [Step Debug] -> + +[93] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[93] [Step Debug] -> + +[93] [Step Debug] <- context_names -i 17 -d 0 +[93] [Step Debug] -> + +[93] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_remove -i 19 -d 930016 +[93] [Step Debug] -> + +[93] [Step Debug] <- run -i 20 +[93] [Step Debug] -> + +[93] Log closed at 2024-03-26 19:31:26.255491 + +[93] Log opened at 2024-03-26 19:31:26.535711 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[93] [Step Debug] -> + +[91] Log opened at 2024-03-26 19:31:26.538133 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[63] Log opened at 2024-03-26 19:31:26.538193 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] Log opened at 2024-03-26 19:31:26.538631 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[92] Log opened at 2024-03-26 19:31:26.538927 +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[91] [Step Debug] -> + +[63] [Step Debug] -> + +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] Log opened at 2024-03-26 19:31:26.539014 +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] -> + +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[92] [Step Debug] -> + +[87] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[87] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[86] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[92] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[87] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[86] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[92] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[87] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[86] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[92] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[87] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[93] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[91] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] -> + +[86] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[92] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[87] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[93] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[93] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[93] [Step Debug] -> + +[91] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[63] [Step Debug] -> + +[91] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[86] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[63] [Step Debug] -> + +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[86] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[92] [Step Debug] -> + +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[87] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[91] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[93] [Step Debug] -> + +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[91] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[91] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[86] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[92] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[87] [Step Debug] -> + +[93] [Step Debug] <- run -i 11 +[91] [Step Debug] <- run -i 11 +[63] [Step Debug] <- run -i 11 +[86] [Step Debug] <- run -i 11 +[92] [Step Debug] <- run -i 11 +[87] [Step Debug] <- run -i 11 +[92] [Step Debug] -> + +[92] Log closed at 2024-03-26 19:31:26.962896 + +[92] Log opened at 2024-03-26 19:31:26.965389 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[92] [Step Debug] -> + +[92] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[92] [Step Debug] -> + +[92] [Step Debug] <- run -i 5 +[63] [Step Debug] -> + +[63] Log closed at 2024-03-26 19:31:26.995501 + +[63] Log opened at 2024-03-26 19:31:26.998108 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[91] [Step Debug] -> + +[91] Log closed at 2024-03-26 19:31:27.029317 + +[91] Log opened at 2024-03-26 19:31:27.031286 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[63] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[91] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[63] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[91] [Step Debug] -> + +[63] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[91] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[63] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[63] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[93] [Step Debug] -> + +[93] Log closed at 2024-03-26 19:31:27.092530 + +[93] Log opened at 2024-03-26 19:31:27.095768 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[93] [Step Debug] -> + +[93] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[93] [Step Debug] -> + +[87] [Step Debug] -> + +[87] Log closed at 2024-03-26 19:31:27.122480 + +[93] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[93] [Step Debug] -> + +[93] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[93] [Step Debug] -> + +[86] [Step Debug] -> + +[86] Log closed at 2024-03-26 19:31:27.151250 + +[92] [Step Debug] -> + +[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[92] [Step Debug] -> + +[92] Log closed at 2024-03-26 19:31:27.229447 + +[63] [Step Debug] <- stop -i 11 +[63] [Step Debug] -> + +[91] [Step Debug] <- stop -i 11 +[91] [Step Debug] -> + +[93] [Step Debug] <- stop -i 11 +[93] [Step Debug] -> + +[88] Log opened at 2024-03-26 19:31:32.409688 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:31:32.430606 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-03-26 19:31:32.451979 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:31:32.805318 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:31:32.890785 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:31:32.974279 + +[85] Log opened at 2024-03-26 19:31:33.071746 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log opened at 2024-03-26 19:31:33.231721 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:31:33.259360 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-03-26 19:31:33.443704 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:31:33.562959 + +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:31:33.709941 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:31:33.835486 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:31:33.968806 + +[94] Log opened at 2024-03-26 19:31:43.170470 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] Log opened at 2024-03-26 19:31:43.229444 +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-03-26 19:31:43.231460 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] Log opened at 2024-03-26 19:31:43.232828 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:31:43.661135 + +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-03-26 19:31:43.744322 + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:31:43.864871 + +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] Log opened at 2024-03-26 19:31:43.933519 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:31:43.949214 + +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log opened at 2024-03-26 19:31:43.997187 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] Log opened at 2024-03-26 19:31:43.996998 +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] Log opened at 2024-03-26 19:31:43.997245 +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:31:44.370262 + +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-03-26 19:31:44.455076 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] Log opened at 2024-03-26 19:31:44.502912 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[92] Log opened at 2024-03-26 19:31:44.503025 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] Log opened at 2024-03-26 19:31:44.504956 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:31:44.532875 + +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:31:44.647798 + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:31:44.907682 + +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-03-26 19:31:44.990781 + +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:31:45.068202 + +[85] Log opened at 2024-03-26 19:31:55.079036 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:31:55.476911 + +[85] Log opened at 2024-03-26 19:31:56.323879 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:31:56.739769 + +[85] Log opened at 2024-03-26 19:31:56.822999 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log opened at 2024-03-26 19:31:56.886177 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[88] Log opened at 2024-03-26 19:31:56.886005 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-03-26 19:31:56.886528 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:31:57.271622 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:31:57.367175 + +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-03-26 19:31:57.393933 +[82] Log opened at 2024-03-26 19:31:57.393952 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] Log opened at 2024-03-26 19:31:57.395432 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:31:57.454304 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:31:57.530766 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:31:57.809837 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:31:57.880822 + +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-03-26 19:31:57.978921 + +[85] Log opened at 2024-03-26 19:32:00.064615 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:32:00.570237 + +[82] Log opened at 2024-03-26 19:32:00.783219 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:32:01.011820 + +[82] Log opened at 2024-03-26 19:32:01.293739 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log opened at 2024-03-26 19:32:01.480419 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:32:01.621079 + +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:32:01.949967 + +[82] Log opened at 2024-03-26 19:32:05.329505 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:32:06.112616 + +[82] Log opened at 2024-03-26 19:32:06.307799 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:32:06.528585 + +[82] Log opened at 2024-03-26 19:32:06.814485 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-03-26 19:32:07.068524 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] Log opened at 2024-03-26 19:32:07.081587 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] Log opened at 2024-03-26 19:32:07.095815 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:32:07.180007 + +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:32:07.477454 + +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-03-26 19:32:07.557073 + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:32:07.681740 + +[92] Log opened at 2024-03-26 19:32:20.418761 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-03-26 19:32:20.872187 + +[95] Log opened at 2024-03-26 19:32:20.895148 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:32:21.404653 + +[95] Log opened at 2024-03-26 19:32:21.427328 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] Log opened at 2024-03-26 19:32:21.429795 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-03-26 19:32:21.880927 + +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:32:21.959840 + +[55] Log opened at 2024-03-26 19:32:29.983307 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] Log opened at 2024-03-26 19:32:29.989403 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-03-26 19:32:29.993751 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] Log opened at 2024-03-26 19:32:30.002169 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-03-26 19:32:30.008146 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-03-26 19:32:30.011893 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:32:30.394689 + +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-03-26 19:32:30.477742 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:32:30.575786 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:32:30.681698 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-03-26 19:32:30.713660 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:32:30.768316 + +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:32:30.883166 + +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:32:31.185090 + +[85] Log opened at 2024-03-26 19:32:32.276479 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:32:33.741798 + +[85] Log opened at 2024-03-26 19:32:33.951974 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-03-26 19:32:33.958870 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[88] Log opened at 2024-03-26 19:32:33.959214 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] Log opened at 2024-03-26 19:32:33.959207 +[82] Log opened at 2024-03-26 19:32:33.959486 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[96] Log opened at 2024-03-26 19:32:33.959408 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:32:34.204818 + +[85] Log opened at 2024-03-26 19:32:34.208108 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:32:34.454554 + +[86] Log opened at 2024-03-26 19:32:34.456362 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:32:34.537311 + +[55] Log opened at 2024-03-26 19:32:34.539228 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:32:34.630739 + +[82] Log opened at 2024-03-26 19:32:34.632881 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-03-26 19:32:34.729417 + +[96] Log opened at 2024-03-26 19:32:34.731571 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:32:34.804126 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-03-26 19:32:34.888438 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:32:34.976053 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:32:35.058937 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:32:35.169678 + +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-03-26 19:32:35.244208 + +[85] Log opened at 2024-03-26 19:32:35.287804 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log opened at 2024-03-26 19:32:35.429028 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-03-26 19:32:35.454291 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log opened at 2024-03-26 19:32:35.591902 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log closed at 2024-03-26 19:32:35.737822 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log closed at 2024-03-26 19:32:35.835705 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:32:35.945819 + +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:32:36.027785 + +[94] Log opened at 2024-03-26 19:32:49.692836 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:32:51.111014 + +[94] Log opened at 2024-03-26 19:32:51.323473 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] Log opened at 2024-03-26 19:32:51.348086 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] Log opened at 2024-03-26 19:32:51.349275 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:32:51.350274 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[96] Log opened at 2024-03-26 19:32:51.350605 +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] Log opened at 2024-03-26 19:32:51.351023 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:32:51.531499 + +[94] Log opened at 2024-03-26 19:32:51.534193 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:32:51.795906 + +[95] Log opened at 2024-03-26 19:32:51.798287 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-03-26 19:32:51.907337 + +[92] Log opened at 2024-03-26 19:32:51.909305 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-03-26 19:32:51.997262 + +[96] Log opened at 2024-03-26 19:32:51.999246 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-03-26 19:32:52.075414 + +[97] Log opened at 2024-03-26 19:32:52.078471 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:32:52.164189 + +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:32:52.250684 + +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:32:52.335997 + +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-03-26 19:32:52.467589 + +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-03-26 19:32:52.557941 + +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-03-26 19:32:52.641141 + +[96] Log opened at 2024-03-26 19:32:52.707372 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log opened at 2024-03-26 19:32:52.890617 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:32:52.917709 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] Log opened at 2024-03-26 19:32:53.078723 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-03-26 19:32:53.211534 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:32:53.379592 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:32:53.522899 + +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-03-26 19:32:53.597835 + +[82] Log opened at 2024-03-26 19:35:52.393173 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:35:53.826496 + +[82] Log opened at 2024-03-26 19:35:54.077003 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-03-26 19:35:54.081552 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[94] Log opened at 2024-03-26 19:35:54.082168 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[88] Log opened at 2024-03-26 19:35:54.081822 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] Log opened at 2024-03-26 19:35:54.082950 +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] Log opened at 2024-03-26 19:35:54.083084 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:35:54.318536 + +[82] Log opened at 2024-03-26 19:35:54.321362 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:35:54.549615 + +[86] Log opened at 2024-03-26 19:35:54.551740 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:35:54.626232 + +[94] Log opened at 2024-03-26 19:35:54.627842 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-03-26 19:35:54.704071 + +[92] Log opened at 2024-03-26 19:35:54.706115 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-03-26 19:35:54.773675 + +[98] Log opened at 2024-03-26 19:35:54.775824 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:35:54.847576 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:35:54.921158 + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:35:55.052313 + +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-03-26 19:35:55.125875 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:35:55.205751 + +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-03-26 19:35:55.286991 + +[92] Log opened at 2024-03-26 19:35:55.416588 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log opened at 2024-03-26 19:35:55.563892 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] Log opened at 2024-03-26 19:35:55.590366 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log opened at 2024-03-26 19:35:55.702467 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-03-26 19:35:55.921165 + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:35:56.052543 + +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:35:56.190861 + +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-03-26 19:35:56.302575 + +[95] Log opened at 2024-03-26 19:36:06.187022 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:36:06.637483 + +[55] Log opened at 2024-03-26 19:36:06.669446 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:36:07.176980 + +[95] Log opened at 2024-03-26 19:36:07.221863 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[55] Log opened at 2024-03-26 19:36:07.221599 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:36:07.642876 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:36:07.762298 + +[95] Log opened at 2024-03-26 19:36:09.038890 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:36:10.490698 + +[55] Log opened at 2024-03-26 19:36:10.714415 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] Log opened at 2024-03-26 19:36:10.720742 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] Log opened at 2024-03-26 19:36:10.721481 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] Log opened at 2024-03-26 19:36:10.722462 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] Log opened at 2024-03-26 19:36:10.722756 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] Log opened at 2024-03-26 19:36:10.722888 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:36:10.965425 + +[55] Log opened at 2024-03-26 19:36:10.967942 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:36:11.145542 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-03-26 19:36:11.147759 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:36:11.260337 + +[95] Log opened at 2024-03-26 19:36:11.262691 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-03-26 19:36:11.360384 + +[97] Log opened at 2024-03-26 19:36:11.364867 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:36:11.449392 + +[88] Log opened at 2024-03-26 19:36:11.451354 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-03-26 19:36:11.539132 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:36:11.625393 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:36:11.720514 + +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:36:11.801963 + +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-03-26 19:36:11.894812 + +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:36:11.980075 + +[82] Log opened at 2024-03-26 19:36:12.075733 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log opened at 2024-03-26 19:36:12.224886 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] Log opened at 2024-03-26 19:36:12.252212 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:36:12.259317 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-03-26 19:36:12.551206 + +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:36:12.664895 + +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] Log closed at 2024-03-26 19:36:12.806670 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:36:12.864591 + +[94] Log opened at 2024-03-26 19:36:30.116771 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:36:31.577779 + +[94] Log opened at 2024-03-26 19:36:31.787630 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-03-26 19:36:31.791605 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[98] Log opened at 2024-03-26 19:36:31.791762 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] Log opened at 2024-03-26 19:36:31.792725 +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] Log opened at 2024-03-26 19:36:31.793201 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] Log opened at 2024-03-26 19:36:31.793474 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:36:32.035001 + +[94] Log opened at 2024-03-26 19:36:32.038683 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:36:32.240523 + +[95] Log opened at 2024-03-26 19:36:32.243033 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:36:32.352400 + +[86] Log opened at 2024-03-26 19:36:32.354957 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-03-26 19:36:32.445697 + +[100] Log opened at 2024-03-26 19:36:32.447873 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-03-26 19:36:32.501661 + +[98] Log opened at 2024-03-26 19:36:32.503769 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-03-26 19:36:32.584352 + +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:36:32.667978 + +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:36:32.752632 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:36:32.841983 + +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-03-26 19:36:32.928310 + +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-03-26 19:36:33.002401 + +[97] Log opened at 2024-03-26 19:36:33.057756 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log opened at 2024-03-26 19:36:33.206890 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] Log opened at 2024-03-26 19:36:33.234779 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log opened at 2024-03-26 19:36:33.348784 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-03-26 19:36:33.520756 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:36:33.628909 + +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-03-26 19:36:33.782409 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:36:33.907797 + +[88] Log opened at 2024-03-26 19:38:06.361237 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:38:06.829828 + +[88] Log opened at 2024-03-26 19:38:06.879892 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:38:07.386007 + +[88] Log opened at 2024-03-26 19:38:07.422616 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] Log opened at 2024-03-26 19:38:07.424428 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-03-26 19:38:07.828762 + +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:38:07.913088 + +[99] Log opened at 2024-03-26 19:38:09.459700 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-03-26 19:38:11.023588 + +[99] Log opened at 2024-03-26 19:38:11.238015 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] Log opened at 2024-03-26 19:38:11.250176 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:38:11.251241 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] Log opened at 2024-03-26 19:38:11.252604 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[94] Log opened at 2024-03-26 19:38:11.252430 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] Log opened at 2024-03-26 19:38:11.252823 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-03-26 19:38:11.475900 + +[99] Log opened at 2024-03-26 19:38:11.478260 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-03-26 19:38:11.660985 + +[98] Log opened at 2024-03-26 19:38:11.662929 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:38:11.771480 + +[88] Log opened at 2024-03-26 19:38:11.774089 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-03-26 19:38:11.852715 + +[101] Log opened at 2024-03-26 19:38:11.855126 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:38:11.916404 + +[55] Log opened at 2024-03-26 19:38:11.918974 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:38:11.992289 + +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-03-26 19:38:12.071088 + +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] Log closed at 2024-03-26 19:38:12.171206 + +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:38:12.226998 + +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-03-26 19:38:12.310136 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:38:12.395012 + +[99] Log opened at 2024-03-26 19:38:12.500531 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log opened at 2024-03-26 19:38:12.628308 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] Log opened at 2024-03-26 19:38:12.652391 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] Log opened at 2024-03-26 19:38:12.789684 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-03-26 19:38:12.930700 + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 19:38:13.051816 + +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-03-26 19:38:13.165300 + +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-03-26 19:38:13.258355 + +[95] Log opened at 2024-03-26 19:38:27.725717 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:38:28.189063 + +[95] Log opened at 2024-03-26 19:38:28.209774 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:38:28.685452 + +[95] Log opened at 2024-03-26 19:38:28.713222 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] Log opened at 2024-03-26 19:38:28.715094 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-03-26 19:38:29.149028 + +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:38:29.249048 + +[100] Log opened at 2024-03-26 19:38:30.805533 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-03-26 19:38:32.306776 + +[100] Log opened at 2024-03-26 19:38:32.516914 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] Log opened at 2024-03-26 19:38:32.521417 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] Log opened at 2024-03-26 19:38:32.521575 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] Log opened at 2024-03-26 19:38:32.523281 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 19:38:32.523827 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[102] Log opened at 2024-03-26 19:38:32.523786 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-03-26 19:38:32.759878 + +[100] Log opened at 2024-03-26 19:38:32.762940 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:38:32.943174 + +[95] Log opened at 2024-03-26 19:38:32.945608 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:38:33.054947 + +[86] Log opened at 2024-03-26 19:38:33.056867 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:38:33.140780 + +[55] Log opened at 2024-03-26 19:38:33.143388 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:38:33.215203 + +[88] Log opened at 2024-03-26 19:38:33.217015 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-03-26 19:38:33.303932 + +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-03-26 19:38:33.398943 + +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 19:38:33.484459 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 19:38:33.572870 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:38:33.656710 + +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:38:33.746370 + +[100] Log opened at 2024-03-26 19:38:33.850603 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log opened at 2024-03-26 19:38:34.025424 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] Log opened at 2024-03-26 19:38:34.049275 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log opened at 2024-03-26 19:38:34.171205 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-03-26 19:38:34.351086 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 19:38:34.460558 + +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 19:38:34.584325 + +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-03-26 19:38:34.659772 + +[98] Log opened at 2024-03-26 20:11:27.044308 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] Log opened at 2024-03-26 20:11:27.088101 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] Log opened at 2024-03-26 20:11:27.092972 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] Log opened at 2024-03-26 20:11:27.093108 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-03-26 20:11:27.528215 + +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-03-26 20:11:27.613952 + +[95] Log closed at 2024-03-26 20:11:27.614081 + +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] Log opened at 2024-03-26 20:11:27.664446 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[101] Log opened at 2024-03-26 20:11:27.664625 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] Log opened at 2024-03-26 20:11:27.664957 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-03-26 20:11:27.730334 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 20:11:28.104608 + +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-03-26 20:11:28.202386 + +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-03-26 20:11:28.285446 + +[86] Log opened at 2024-03-26 20:11:34.073557 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] Log opened at 2024-03-26 20:11:34.074076 +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 20:11:34.074768 +[102] Log opened at 2024-03-26 20:11:34.075338 +[88] Log opened at 2024-03-26 20:11:34.075177 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] Log opened at 2024-03-26 20:11:34.075628 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 20:11:34.493758 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 20:11:34.535739 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 20:11:34.591903 + +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 20:11:34.679575 + +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 20:11:34.753842 + +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] Log closed at 2024-03-26 20:11:34.859426 + +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-03-26 20:11:34.916275 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 20:11:35.012523 + +[55] Log opened at 2024-03-26 20:11:37.685578 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 20:11:39.173960 + +[55] Log opened at 2024-03-26 20:11:39.388720 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] Log opened at 2024-03-26 20:11:39.388710 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] Log opened at 2024-03-26 20:11:39.388974 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] Log opened at 2024-03-26 20:11:39.389181 +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] Log opened at 2024-03-26 20:11:39.389351 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] Log opened at 2024-03-26 20:11:39.389551 +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-03-26 20:11:39.835901 + +[102] Log opened at 2024-03-26 20:11:39.838332 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-03-26 20:11:39.919952 + +[100] Log opened at 2024-03-26 20:11:39.921801 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log closed at 2024-03-26 20:11:40.052738 + +[86] Log opened at 2024-03-26 20:11:40.054939 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 20:11:40.109093 + +[94] Log opened at 2024-03-26 20:11:40.110810 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 20:11:40.182457 + +[88] Log opened at 2024-03-26 20:11:40.184513 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 20:11:40.302939 + +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 20:11:40.385755 + +[102] Log closed at 2024-03-26 20:11:40.387179 + +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-03-26 20:11:40.473674 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 20:11:40.549539 + +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 20:11:40.630724 + +[55] Log opened at 2024-03-26 20:11:40.997098 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log opened at 2024-03-26 20:11:41.149931 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] Log opened at 2024-03-26 20:11:41.179992 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log opened at 2024-03-26 20:11:41.272675 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log closed at 2024-03-26 20:11:41.480801 + +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-03-26 20:11:41.585354 + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 20:11:41.717520 + +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 20:11:41.820531 + +[95] Log opened at 2024-03-26 20:11:59.017457 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log opened at 2024-03-26 20:11:59.068799 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] Log opened at 2024-03-26 20:11:59.073210 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[104] Log opened at 2024-03-26 20:11:59.073837 +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[104] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[104] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[104] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[104] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[104] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[104] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 20:11:59.462449 + +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-03-26 20:11:59.549353 + +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] Log opened at 2024-03-26 20:11:59.600803 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] Log opened at 2024-03-26 20:11:59.600833 +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] Log opened at 2024-03-26 20:11:59.601816 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[104] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[104] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[104] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[104] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[104] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[104] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-03-26 20:11:59.626277 + +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[104] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[104] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[104] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[104] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[104] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[104] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[104] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[104] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[104] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[104] Log closed at 2024-03-26 20:11:59.711544 + +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-03-26 20:11:59.997962 + +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-03-26 20:12:00.077029 + +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 20:12:00.171378 + +[86] Log opened at 2024-03-26 20:12:07.680431 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[55] Log opened at 2024-03-26 20:12:07.680817 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] Log opened at 2024-03-26 20:12:07.681391 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] Log opened at 2024-03-26 20:12:07.682196 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[88] Log opened at 2024-03-26 20:12:07.682577 +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] Log opened at 2024-03-26 20:12:07.682690 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 20:12:08.087538 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 20:12:08.177913 + +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 20:12:08.268602 + +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-03-26 20:12:08.313809 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-03-26 20:12:08.374062 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-03-26 20:12:08.485940 + +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-03-26 20:12:08.562551 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-03-26 20:12:08.753627 + +[98] Log opened at 2024-03-26 20:12:26.365695 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-03-26 20:12:27.841866 + +[98] Log opened at 2024-03-26 20:12:28.123443 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] Log opened at 2024-03-26 20:12:28.137466 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] Log opened at 2024-03-26 20:12:28.138094 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] Log opened at 2024-03-26 20:12:28.138986 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[94] Log opened at 2024-03-26 20:12:28.138889 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] Log opened at 2024-03-26 20:12:28.139518 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-03-26 20:12:28.365262 + +[98] Log opened at 2024-03-26 20:12:28.367745 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-03-26 20:12:28.560862 + +[88] Log opened at 2024-03-26 20:12:28.563087 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 20:12:28.644264 + +[94] Log opened at 2024-03-26 20:12:28.646494 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 20:12:28.719480 + +[95] Log opened at 2024-03-26 20:12:28.721255 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-03-26 20:12:28.858231 + +[100] Log opened at 2024-03-26 20:12:28.860827 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] Log closed at 2024-03-26 20:12:28.963839 + +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-03-26 20:12:29.052899 + +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] Log closed at 2024-03-26 20:12:29.142455 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 20:12:29.202030 + +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-03-26 20:12:29.275665 + +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-03-26 20:12:29.363218 + +[88] Log opened at 2024-03-26 20:12:29.607214 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log opened at 2024-03-26 20:12:29.781430 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] Log opened at 2024-03-26 20:12:29.792953 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log opened at 2024-03-26 20:12:30.065037 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] Log closed at 2024-03-26 20:12:30.070589 + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-03-26 20:12:30.213457 + +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] Log closed at 2024-03-26 20:12:30.324037 + +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-03-26 20:12:30.470218 + +[102] Log opened at 2024-03-26 20:12:48.727036 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 12 +[102] [Step Debug] -> + +[102] [Step Debug] -> + +[102] [Step Debug] <- stack_get -i 13 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[102] [Step Debug] -> + +[102] [Step Debug] <- context_names -i 17 -d 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- step_over -i 19 +[102] [Step Debug] -> + +[102] [Step Debug] <- stack_get -i 20 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 21 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 23 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[102] [Step Debug] -> + +[102] [Step Debug] <- context_names -i 24 -d 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- step_over -i 26 +[102] [Step Debug] -> + +[102] [Step Debug] <- stack_get -i 27 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 28 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[102] [Step Debug] -> + +[102] [Step Debug] <- property_get -i 29 -n "$DEVSENSE_EVAL_CACHE['8dd14823b34bf3a9bd7c01d0c01c801abd7c00502f3a7fbf3b067969a1fa8ccc']" -c 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 30 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 31 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[102] [Step Debug] -> + +[102] [Step Debug] <- context_names -i 32 -d 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_get -i 33 -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- step_over -i 34 +[102] [Step Debug] -> + +[102] [Step Debug] <- stack_get -i 35 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[102] [Step Debug] -> + +[102] [Step Debug] <- property_get -i 37 -n "$DEVSENSE_EVAL_CACHE['8dd14823b34bf3a9bd7c01d0c01c801abd7c00502f3a7fbf3b067969a1fa8ccc']" -c 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 38 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 39 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[102] [Step Debug] -> + +[102] [Step Debug] <- context_names -i 40 -d 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_get -i 41 -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- step_over -i 42 +[102] [Step Debug] -> + +[102] [Step Debug] <- stack_get -i 43 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[102] [Step Debug] -> + +[102] [Step Debug] <- property_get -i 45 -n "$DEVSENSE_EVAL_CACHE['8dd14823b34bf3a9bd7c01d0c01c801abd7c00502f3a7fbf3b067969a1fa8ccc']" -c 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 47 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[102] [Step Debug] -> + +[102] [Step Debug] <- context_names -i 48 -d 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_get -i 49 -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- step_over -i 50 +[102] [Step Debug] -> + +[102] [Step Debug] <- stack_get -i 51 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 52 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[102] [Step Debug] -> + +[102] [Step Debug] <- property_get -i 53 -n "$DEVSENSE_EVAL_CACHE['8dd14823b34bf3a9bd7c01d0c01c801abd7c00502f3a7fbf3b067969a1fa8ccc']" -c 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 54 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 55 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[102] [Step Debug] -> + +[102] [Step Debug] <- context_names -i 56 -d 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_get -i 57 -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- step_over -i 58 +[102] [Step Debug] -> + +[102] [Step Debug] <- stack_get -i 59 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 60 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[102] [Step Debug] -> + +[102] [Step Debug] <- property_get -i 61 -n "$DEVSENSE_EVAL_CACHE['8dd14823b34bf3a9bd7c01d0c01c801abd7c00502f3a7fbf3b067969a1fa8ccc']" -c 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 62 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 63 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[102] [Step Debug] -> + +[102] [Step Debug] <- context_names -i 64 -d 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_get -i 65 -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- step_over -i 66 +[102] [Step Debug] -> + +[102] [Step Debug] <- stack_get -i 67 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 68 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 69 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 70 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[102] [Step Debug] -> + +[102] [Step Debug] <- context_names -i 71 -d 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_get -i 72 -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- step_over -i 73 +[102] [Step Debug] -> + +[102] [Step Debug] <- stack_get -i 74 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 75 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 76 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 77 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[102] [Step Debug] -> + +[102] [Step Debug] <- context_names -i 78 -d 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_get -i 79 -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- property_get -i 80 -n "$input_data" -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 81 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDdhY2RhZWJmNzk1MDY0YTU2MjEzNzUxZjdlOTY1OWIxOTllNTQ2YzQwYTExNjUxZWRjZmE0MDlkNDhlMmQ5ZCddPVByZXN1cHVlc3RvU2VydmljZTo6b2J0ZW5lclZhbG9yTGluZWFQcmVzdXB1ZXN0bw== +[102] [Step Debug] -> + +[102] [Step Debug] <- property_get -i 82 -n "$input_data" -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- property_get -i 83 -n "$linea->tipo" -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 84 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[102] [Step Debug] -> + +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 85 +[102] [Step Debug] -> + +[102] Log closed at 2024-03-26 20:14:47.824783 + +[102] Log opened at 2024-03-26 20:14:48.117496 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[55] Log opened at 2024-03-26 20:14:48.174344 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[55] [Step Debug] -> + +[98] Log opened at 2024-03-26 20:14:48.175735 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[98] [Step Debug] -> + +[106] Log opened at 2024-03-26 20:14:48.176087 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] Log opened at 2024-03-26 20:14:48.177176 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[106] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[88] Log opened at 2024-03-26 20:14:48.177396 +[106] [Step Debug] -> + +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] -> + +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[88] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[106] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[106] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[106] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[102] [Step Debug] <- run -i 13 +[55] [Step Debug] <- run -i 5 +[98] [Step Debug] <- run -i 5 +[106] [Step Debug] <- run -i 5 +[95] [Step Debug] <- run -i 5 +[88] [Step Debug] <- run -i 5 +[102] [Step Debug] -> + +[102] Log closed at 2024-03-26 20:14:48.271359 + +[102] Log opened at 2024-03-26 20:14:48.274038 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[98] [Step Debug] -> + +[98] Log closed at 2024-03-26 20:14:48.479921 + +[98] Log opened at 2024-03-26 20:14:48.481815 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[98] [Step Debug] -> + +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[55] [Step Debug] -> + +[55] Log closed at 2024-03-26 20:14:48.563053 + +[55] Log opened at 2024-03-26 20:14:48.565411 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[95] [Step Debug] -> + +[95] Log closed at 2024-03-26 20:14:48.591154 + +[95] Log opened at 2024-03-26 20:14:48.592980 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[55] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[95] [Step Debug] -> + +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[106] [Step Debug] -> + +[106] Log closed at 2024-03-26 20:14:48.626549 + +[106] Log opened at 2024-03-26 20:14:48.629184 +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[55] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] -> + +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[55] [Step Debug] -> + +[106] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[106] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[55] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[95] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[55] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[95] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[55] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[95] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[106] [Step Debug] -> + +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[88] [Step Debug] -> + +[88] Log closed at 2024-03-26 20:14:48.662584 + +[106] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[106] [Step Debug] -> + +[102] [Step Debug] <- run -i 13 +[98] [Step Debug] <- run -i 13 +[55] [Step Debug] <- run -i 17 +[95] [Step Debug] <- run -i 17 +[106] [Step Debug] <- run -i 13 +[98] [Step Debug] -> + +[98] Log closed at 2024-03-26 20:14:49.062735 + +[95] [Step Debug] -> + +[95] Log closed at 2024-03-26 20:14:49.094564 + +[106] [Step Debug] -> + +[106] Log closed at 2024-03-26 20:14:49.124760 + +[102] [Step Debug] -> + +[102] Log closed at 2024-03-26 20:14:49.169224 + +[55] [Step Debug] -> + +[55] Log closed at 2024-03-26 20:14:49.196434 + +[88] Log opened at 2024-03-26 20:14:49.292599 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[88] [Step Debug] -> + +[88] [Step Debug] <- run -i 13 +[98] Log opened at 2024-03-26 20:14:49.439193 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[98] [Step Debug] -> + +[98] [Step Debug] <- run -i 13 +[95] Log opened at 2024-03-26 20:14:49.602162 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[55] Log opened at 2024-03-26 20:14:49.635690 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[95] [Step Debug] <- run -i 13 +[55] [Step Debug] <- run -i 5 +[88] [Step Debug] -> + +[88] Log closed at 2024-03-26 20:14:49.712041 + +[98] [Step Debug] -> + +[98] [Step Debug] -> + +[98] [Step Debug] -> + +[98] Log closed at 2024-03-26 20:14:49.864303 + +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[55] [Step Debug] -> + +[55] Log closed at 2024-03-26 20:14:49.927344 + +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] Log closed at 2024-03-26 20:14:50.012095 + +[88] Log opened at 2024-03-26 20:14:50.650545 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[88] [Step Debug] -> + +[88] [Step Debug] <- run -i 13 +[88] [Step Debug] -> + +[88] [Step Debug] -> + +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 14 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 17 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 18 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- run -i 20 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 21 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- property_get -i 23 -n "$DEVSENSE_EVAL_CACHE['8dd14823b34bf3a9bd7c01d0c01c801abd7c00502f3a7fbf3b067969a1fa8ccc']" -c 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 26 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 27 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- run -i 28 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 29 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 30 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 31 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 32 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 33 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- step_over -i 35 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 36 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 37 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 38 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 39 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 40 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 41 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- step_over -i 42 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 43 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 45 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 47 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 48 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- step_over -i 49 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 50 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 51 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 52 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 53 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 54 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- step_over -i 56 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 57 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 58 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 59 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 60 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- step_over -i 61 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 62 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 63 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 64 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 65 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 66 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 67 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- step_over -i 68 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 69 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 70 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 71 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 72 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 73 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 74 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- step_over -i 75 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 76 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 77 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 78 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 79 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 80 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 81 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- step_over -i 82 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 83 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 84 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 85 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 86 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 87 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 88 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- step_over -i 89 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 90 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 91 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 92 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 93 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 94 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 95 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- step_over -i 96 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 97 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 98 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 99 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 100 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 101 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 102 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 103 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMTRjYjJlMzFjNTUxYzEyZjU5YTBiMmRhNWMxYmJiODE2ZWI1OTBkNTcxNWZkOWQ1ZmQxODI4MWMxODJlODU0ZSddPVByZXN1cHVlc3RvU2VydmljZTo6Z2V0TGluZWFQcmVzdXB1ZXN0b1BsYW5h +[88] [Step Debug] -> + +[88] [Step Debug] <- step_into -i 104 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 105 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 106 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 107 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 108 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 109 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 110 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- step_over -i 111 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 112 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 113 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 114 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 115 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 116 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 117 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- step_over -i 118 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 119 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 120 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 121 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 122 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 123 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 124 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- step_over -i 125 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 126 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 127 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 128 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 129 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 130 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 131 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 132 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 87 +[88] [Step Debug] -> + +[88] [Step Debug] -> + +[88] [Step Debug] <- run -i 133 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 134 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 135 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 136 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 137 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 138 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 139 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_remove -i 140 -d 880038 +[88] [Step Debug] -> + +[88] [Step Debug] <- step_over -i 141 +[88] [Step Debug] -> + +[88] [Step Debug] <- stack_get -i 142 +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 143 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 144 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[88] [Step Debug] -> + +[88] [Step Debug] <- eval -i 145 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[88] [Step Debug] -> + +[88] [Step Debug] <- context_names -i 146 -d 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- context_get -i 147 -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- property_get -i 148 -n "$datos_tarifa" -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- property_get -i 149 -n "$maquina->maquina_id" -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- property_get -i 150 -n "$maquina->maquina_id" -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- property_get -i 151 -n "$tarifamodel->getTarifa" -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- property_get -i 152 -n "$uso" -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- property_get -i 153 -n "$tipo" -d 0 -c 0 +[88] [Step Debug] -> + +[88] [Step Debug] <- run -i 154 +[88] [Step Debug] -> + +[88] Log closed at 2024-03-26 20:15:56.745845 + +[88] Log opened at 2024-03-26 20:15:56.953116 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[88] [Step Debug] -> + +[105] Log opened at 2024-03-26 20:15:57.044701 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] Log opened at 2024-03-26 20:15:57.044773 +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] Log opened at 2024-03-26 20:15:57.045239 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[105] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[105] [Step Debug] -> + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[94] [Step Debug] -> + +[100] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[100] [Step Debug] -> + +[86] Log opened at 2024-03-26 20:15:57.046064 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[86] [Step Debug] -> + +[107] Log opened at 2024-03-26 20:15:57.047304 +[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' +[105] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[105] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[94] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[94] [Step Debug] -> + +[107] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[107] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[107] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[107] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[107] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[107] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[105] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[94] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[100] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[100] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[105] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[94] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[100] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[86] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[100] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[86] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[107] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[86] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[107] [Step Debug] -> + +[88] [Step Debug] <- run -i 13 +[105] [Step Debug] <- run -i 5 +[86] [Step Debug] <- run -i 5 +[94] [Step Debug] <- run -i 5 +[100] [Step Debug] <- run -i 5 +[107] [Step Debug] <- run -i 5 +[88] [Step Debug] -> + +[88] Log closed at 2024-03-26 20:15:57.135407 + +[88] Log opened at 2024-03-26 20:15:57.138265 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[88] [Step Debug] -> + +[100] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[100] [Step Debug] -> + +[100] Log closed at 2024-03-26 20:15:57.382064 + +[100] Log opened at 2024-03-26 20:15:57.384808 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[100] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[100] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[100] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[100] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[100] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[100] [Step Debug] -> + +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[86] [Step Debug] -> + +[86] Log closed at 2024-03-26 20:15:57.436449 + +[100] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[100] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[100] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[100] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[100] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[100] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[100] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[100] [Step Debug] -> + +[86] Log opened at 2024-03-26 20:15:57.440605 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[86] [Step Debug] -> + +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[105] [Step Debug] -> + +[105] Log closed at 2024-03-26 20:15:57.466511 + +[105] Log opened at 2024-03-26 20:15:57.468374 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[105] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[105] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[86] [Step Debug] -> + +[105] [Step Debug] -> + +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[94] [Step Debug] -> + +[94] Log closed at 2024-03-26 20:15:57.547515 + +[94] Log opened at 2024-03-26 20:15:57.549896 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[94] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[86] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[105] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[105] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[86] [Step Debug] -> + +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[105] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[86] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[105] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[86] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[105] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[86] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[105] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[94] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[94] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[94] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[94] [Step Debug] -> + +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[107] [Step Debug] -> + +[107] Log closed at 2024-03-26 20:15:57.585082 + +[94] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[94] [Step Debug] -> + +[88] [Step Debug] <- run -i 13 +[100] [Step Debug] <- run -i 13 +[86] [Step Debug] <- run -i 17 +[105] [Step Debug] <- run -i 17 +[94] [Step Debug] <- run -i 13 +[94] [Step Debug] -> + +[94] Log closed at 2024-03-26 20:15:57.993362 + +[100] [Step Debug] -> + +[100] Log closed at 2024-03-26 20:15:58.034505 + +[86] [Step Debug] -> + +[86] Log closed at 2024-03-26 20:15:58.061270 + +[88] [Step Debug] -> + +[88] Log closed at 2024-03-26 20:15:58.089785 + +[105] [Step Debug] -> + +[105] Log closed at 2024-03-26 20:15:58.118160 + +[88] Log opened at 2024-03-26 20:15:58.200371 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[88] [Step Debug] -> + +[88] [Step Debug] <- run -i 13 +[107] Log opened at 2024-03-26 20:15:58.337922 +[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' +[107] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[107] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[107] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[107] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[107] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[107] [Step Debug] -> + +[100] Log opened at 2024-03-26 20:15:58.361544 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[100] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[100] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[100] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[100] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[100] [Step Debug] -> + +[107] [Step Debug] <- run -i 13 +[100] [Step Debug] <- run -i 5 +[86] Log opened at 2024-03-26 20:15:58.463859 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[86] [Step Debug] -> + +[88] [Step Debug] -> + +[88] Log closed at 2024-03-26 20:15:58.586603 + +[100] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[100] [Step Debug] -> + +[100] Log closed at 2024-03-26 20:15:58.691371 + +[107] [Step Debug] -> + +[107] [Step Debug] -> + +[107] [Step Debug] -> + +[107] Log closed at 2024-03-26 20:15:58.760275 + +[102] Log opened at 2024-03-26 20:16:18.730755 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[86] [Step Debug] <- run -i 13 +[102] [Step Debug] <- run -i 13 +[102] [Step Debug] -> + +[102] [Step Debug] -> + +[102] [Step Debug] -> + +[102] [Step Debug] <- stack_get -i 14 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 17 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[102] [Step Debug] -> + +[102] [Step Debug] <- context_names -i 18 -d 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 20 +[102] [Step Debug] -> + +[102] [Step Debug] <- stack_get -i 21 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[102] [Step Debug] -> + +[102] [Step Debug] <- property_get -i 23 -n "$DEVSENSE_EVAL_CACHE['8dd14823b34bf3a9bd7c01d0c01c801abd7c00502f3a7fbf3b067969a1fa8ccc']" -c 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[102] [Step Debug] -> + +[102] [Step Debug] <- context_names -i 26 -d 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_get -i 27 -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 28 +[102] [Step Debug] -> + +[102] [Step Debug] <- stack_get -i 29 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 30 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 31 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 32 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[102] [Step Debug] -> + +[102] [Step Debug] <- context_names -i 33 -d 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 35 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjNkNDk4ZjhhOGQxNTBhNWY5ZjI2Y2JhY2UzOTk1MTA5N2ZmOGI1NzUzNmYxZjAxMzA4YjU3MTE4ODZjOTIwYSddPSRkYXRhWydkYXRhJ11bJHBrZXld +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[102] [Step Debug] -> + +[102] [Step Debug] <- eval -i 37 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMGUyYzVjZjI0YzNjNDM2NzczZGQwNGE4NjgyZmQyZTI5Zjg2YThhNzc2ZThlOGY4MzIzMTIyNTMzYzcxZTU5MCddPSRkYXRldGltZS0+Zm9ybWF0KCdZLW0tZCBIOmk6cycp +[102] [Step Debug] -> + +[102] [Step Debug] <- property_get -i 38 -n "$data['uso']" -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_names -i 39 -d 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- step_over -i 41 +[102] [Step Debug] -> + +[102] [Step Debug] <- stack_get -i 42 +[102] [Step Debug] -> + +[102] [Step Debug] <- property_get -i 43 -n "$data['uso']" -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_names -i 44 -d 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- context_get -i 45 -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- property_get -i 46 -n "$linea" -d 0 -c 0 +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 47 +[102] [Step Debug] -> + +[102] Log closed at 2024-03-26 20:17:23.561005 + +[86] [Step Debug] -> + +[86] Log closed at 2024-03-26 20:17:23.616189 + +[102] Log opened at 2024-03-26 20:17:23.781867 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[98] Log opened at 2024-03-26 20:17:23.844292 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[55] Log opened at 2024-03-26 20:17:23.849174 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[95] Log opened at 2024-03-26 20:17:23.853365 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[95] [Step Debug] -> + +[94] Log opened at 2024-03-26 20:17:23.855012 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[105] Log opened at 2024-03-26 20:17:23.855554 +[94] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[94] [Step Debug] -> + +[95] [Step Debug] -> + +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[105] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[94] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[94] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[105] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[94] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[105] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[94] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[105] [Step Debug] -> + +[102] [Step Debug] <- run -i 13 +[98] [Step Debug] <- run -i 5 +[55] [Step Debug] <- run -i 5 +[95] [Step Debug] <- run -i 5 +[94] [Step Debug] <- run -i 5 +[105] [Step Debug] <- run -i 5 +[102] [Step Debug] -> + +[102] Log closed at 2024-03-26 20:17:23.997225 + +[102] Log opened at 2024-03-26 20:17:24.004191 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[95] [Step Debug] -> + +[95] Log closed at 2024-03-26 20:17:24.237641 + +[95] Log opened at 2024-03-26 20:17:24.239932 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[102] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[95] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[102] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[95] [Step Debug] -> + +[102] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[95] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[102] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[102] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[95] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[95] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[102] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[95] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[102] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[95] [Step Debug] -> + +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[98] [Step Debug] -> + +[98] Log closed at 2024-03-26 20:17:24.311001 + +[98] Log opened at 2024-03-26 20:17:24.313496 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[55] [Step Debug] -> + +[55] Log closed at 2024-03-26 20:17:24.338909 + +[55] Log opened at 2024-03-26 20:17:24.340607 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[98] [Step Debug] -> + +[55] [Step Debug] -> + +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[94] [Step Debug] -> + +[94] Log closed at 2024-03-26 20:17:24.379978 + +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[98] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[98] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[55] [Step Debug] -> + +[98] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[55] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[98] [Step Debug] -> + +[94] Log opened at 2024-03-26 20:17:24.382301 +[55] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[98] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[98] [Step Debug] -> + +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[98] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[55] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[98] [Step Debug] -> + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[94] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[94] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[55] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[98] [Step Debug] -> + +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[55] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[98] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[55] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[94] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[94] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[94] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[94] [Step Debug] -> + +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[105] [Step Debug] -> + +[105] Log closed at 2024-03-26 20:17:24.417078 + +[94] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[94] [Step Debug] -> + +[102] [Step Debug] <- run -i 17 +[95] [Step Debug] <- run -i 17 +[98] [Step Debug] <- run -i 17 +[55] [Step Debug] <- run -i 17 +[94] [Step Debug] <- run -i 13 +[55] [Step Debug] -> + +[55] Log closed at 2024-03-26 20:17:24.761952 + +[102] [Step Debug] -> + +[102] Log closed at 2024-03-26 20:17:24.790788 + +[95] [Step Debug] -> + +[95] Log closed at 2024-03-26 20:17:24.820433 + +[98] [Step Debug] -> + +[98] Log closed at 2024-03-26 20:17:24.865563 + +[94] [Step Debug] -> + +[94] Log closed at 2024-03-26 20:17:24.895086 + +[105] Log opened at 2024-03-26 20:17:24.974354 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[105] [Step Debug] -> + +[105] [Step Debug] <- run -i 13 +[95] Log opened at 2024-03-26 20:17:25.127355 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[94] Log opened at 2024-03-26 20:17:25.145163 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[94] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[94] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[94] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[94] [Step Debug] -> + +[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[94] [Step Debug] -> + +[95] [Step Debug] <- run -i 13 +[94] [Step Debug] <- run -i 5 +[98] Log opened at 2024-03-26 20:17:25.261401 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[98] [Step Debug] -> + +[105] [Step Debug] -> + +[105] Log closed at 2024-03-26 20:17:25.445999 + +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] Log closed at 2024-03-26 20:17:25.517596 + +[94] [Step Debug] -> + +[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[94] [Step Debug] -> + +[94] Log closed at 2024-03-26 20:17:25.575769 + +[105] Log opened at 2024-03-26 20:17:26.346156 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1127 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[105] [Step Debug] -> + +[98] [Step Debug] <- run -i 13 +[105] [Step Debug] <- run -i 13 +[98] [Step Debug] -> + +[98] Log closed at 2024-03-26 20:17:26.720635 + +[105] [Step Debug] -> + +[105] [Step Debug] -> + +[105] [Step Debug] -> + +[105] [Step Debug] <- stack_get -i 14 +[105] [Step Debug] -> + +[105] [Step Debug] <- property_get -i 15 -n "$data['uso']" -d 0 -c 0 +[105] [Step Debug] -> + +[105] [Step Debug] <- context_names -i 16 -d 0 +[105] [Step Debug] -> + +[105] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[105] [Step Debug] -> + +[105] [Step Debug] <- run -i 18 +[105] [Step Debug] -> + +[105] [Step Debug] <- stack_get -i 19 +[105] [Step Debug] -> + +[105] [Step Debug] <- property_get -i 20 -n "$data['uso']" -d 0 -c 0 +[105] [Step Debug] -> + +[105] [Step Debug] <- context_names -i 21 -d 0 +[105] [Step Debug] -> + +[105] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[105] [Step Debug] -> + +[105] [Step Debug] <- run -i 23 +[105] [Step Debug] -> + +[105] [Step Debug] <- stack_get -i 24 +[105] [Step Debug] -> + +[105] [Step Debug] <- property_get -i 25 -n "$data['uso']" -d 0 -c 0 +[105] [Step Debug] -> + +[105] [Step Debug] <- context_names -i 26 -d 0 +[105] [Step Debug] -> + +[105] [Step Debug] <- context_get -i 27 -d 0 -c 0 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_remove -i 28 -d 1050019 +[105] [Step Debug] -> + +[105] [Step Debug] <- run -i 29 +[105] [Step Debug] -> + +[105] Log closed at 2024-03-26 20:17:35.033646 + +[105] Log opened at 2024-03-26 20:17:35.359280 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[105] [Step Debug] -> + +[88] Log opened at 2024-03-26 20:17:35.363751 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[106] Log opened at 2024-03-26 20:17:35.364179 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[107] Log opened at 2024-03-26 20:17:35.363895 +[88] [Step Debug] -> + +[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] Log opened at 2024-03-26 20:17:35.363870 +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[107] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] -> + +[107] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[107] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[107] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[107] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[107] [Step Debug] -> + +[100] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[100] [Step Debug] -> + +[86] Log opened at 2024-03-26 20:17:35.364911 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[86] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[105] [Step Debug] -> + +[86] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[88] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[106] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[107] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[100] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[88] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[106] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[107] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[100] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[100] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[88] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[106] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[107] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[100] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[105] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[88] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[106] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[107] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[100] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[86] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 +[106] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 +[107] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 +[100] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[86] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[105] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[105] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[105] [Step Debug] -> + +[88] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[88] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[88] [Step Debug] -> + +[106] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[106] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[107] [Step Debug] -> + +[106] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[107] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[107] [Step Debug] -> + +[100] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[100] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[86] [Step Debug] -> + +[100] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[86] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[105] [Step Debug] -> + +[86] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[105] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[105] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[88] [Step Debug] -> + +[105] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[106] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[88] [Step Debug] -> + +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[106] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[107] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[106] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[107] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[107] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[100] [Step Debug] -> + +[107] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[100] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[100] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[86] [Step Debug] -> + +[100] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[86] [Step Debug] -> + +[105] [Step Debug] <- run -i 12 +[88] [Step Debug] <- run -i 12 +[106] [Step Debug] <- run -i 12 +[107] [Step Debug] <- run -i 12 +[100] [Step Debug] <- run -i 12 +[86] [Step Debug] <- run -i 12 +[105] [Step Debug] -> + +[105] Log closed at 2024-03-26 20:17:35.550288 + +[105] Log opened at 2024-03-26 20:17:35.553520 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- run -i 5 +[106] [Step Debug] -> + +[106] Log closed at 2024-03-26 20:17:35.794337 + +[106] Log opened at 2024-03-26 20:17:35.796289 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[106] [Step Debug] -> + +[88] [Step Debug] -> + +[88] Log closed at 2024-03-26 20:17:35.863624 + +[88] Log opened at 2024-03-26 20:17:35.865164 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[100] [Step Debug] -> + +[100] Log closed at 2024-03-26 20:17:35.891925 + +[100] Log opened at 2024-03-26 20:17:35.893806 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[100] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[100] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[100] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[100] [Step Debug] -> + +[100] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[100] [Step Debug] -> + +[106] [Step Debug] <- run -i 5 +[88] [Step Debug] <- run -i 5 +[100] [Step Debug] <- run -i 5 +[107] [Step Debug] -> + +[107] Log closed at 2024-03-26 20:17:35.939030 + +[107] Log opened at 2024-03-26 20:17:35.941698 +[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' +[107] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[107] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[107] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[107] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[107] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[107] [Step Debug] -> + +[86] [Step Debug] -> + +[86] Log closed at 2024-03-26 20:17:35.965058 + +[105] [Step Debug] -> + +[105] Log closed at 2024-03-26 20:17:35.995538 + +[107] [Step Debug] <- run -i 5 +[100] [Step Debug] -> + +[100] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[100] [Step Debug] -> + +[100] Log closed at 2024-03-26 20:17:36.154365 + +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[88] [Step Debug] -> + +[88] Log closed at 2024-03-26 20:17:36.210021 + +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[106] [Step Debug] -> + +[106] Log closed at 2024-03-26 20:17:36.254253 + +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[107] [Step Debug] -> + +[107] Log closed at 2024-03-26 20:17:36.344230 + +[105] Log opened at 2024-03-26 20:17:36.499345 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[105] [Step Debug] -> + +[105] [Step Debug] <- run -i 12 +[86] Log opened at 2024-03-26 20:17:36.652048 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[86] [Step Debug] -> + +[106] Log opened at 2024-03-26 20:17:36.690525 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[106] [Step Debug] -> + +[86] [Step Debug] <- run -i 12 +[106] [Step Debug] <- run -i 5 +[107] Log opened at 2024-03-26 20:17:36.843294 +[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' +[107] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[107] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[107] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[107] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[107] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[107] [Step Debug] -> + +[105] [Step Debug] -> + +[105] Log closed at 2024-03-26 20:17:36.862647 + +[107] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 982 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[107] [Step Debug] -> + +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1317 +[106] [Step Debug] -> + +[106] Log closed at 2024-03-26 20:17:37.035980 + +[86] [Step Debug] -> + +[86] [Step Debug] -> + +[86] Log closed at 2024-03-26 20:17:37.104389 + +[107] [Step Debug] <- stop -i 12 +[107] [Step Debug] -> + +[102] Log opened at 2024-03-26 20:20:57.798439 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-03-26 20:20:58.355497 +