diff --git a/.gitignore b/.gitignore
index d6117b2a..08e5f6c6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,3 @@
ci4/.env
+.vscode/
+
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 7edac904..83b46116 100755
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,3 +1,18 @@
{
- "clockify.tracking.workspaceId": "6464949facab6237e1538c14"
+ "clockify.tracking.workspaceId": "6464949facab6237e1538c14",
+ "sqltools.connections": [
+ {
+ "mysqlOptions": {
+ "authProtocol": "default",
+ "enableSsl": "Disabled"
+ },
+ "previewLimit": 50,
+ "server": "localhost",
+ "port": 3306,
+ "driver": "MariaDB",
+ "name": "sk-local",
+ "database": "sk_imn",
+ "username": "sk_imn"
+ }
+ ]
}
\ No newline at end of file
diff --git a/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php b/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php
index 5295e249..cfb50c23 100755
--- a/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php
+++ b/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php
@@ -102,6 +102,10 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
$sanitizedData['papel_formato_id'] = 0;
}
+ if (!isset($sanitizedData['is_duplicado']) || $sanitizedData['is_duplicado'] == null) {
+ $sanitizedData['is_duplicado'] = 0;
+ }
+
$noException = true;
if ($successfulResult = $this->canValidate($this->model->validationRulesAdd, $this->model->validationMessagesAdd)) : // if ($successfulResult = $this->validate($this->formValidationRules) ) :
@@ -191,10 +195,13 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
$sanitizedData = $this->sanitized($postData, $nullIfEmpty);
-
// JJO
$sanitizedData['user_updated_id'] = $session->id_user;
+ if ($this->request->getPost('is_duplicado') == null) {
+ $sanitizedData['is_duplicado'] = 0;
+ }
+
if ($this->request->getPost('retractilado') == null) {
$sanitizedData['retractilado'] = false;
}
@@ -339,28 +346,33 @@ 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();
// Lineas Presupuesto
- $this->viewData['lineasPresupuesto'] = (new PresupuestoLineaModel())->getLineasPresupuesto($id);
+ [$cambios_lineas, $this->viewData['lineasPresupuesto']] = $this->getLineasPresupuesto($presupuestoEntity);
+ $this->viewData['presupuestoEntity']->cambios_lineas=$cambios_lineas;
- // Tarifas
- $this->viewData['serviciosAcabado'] = $this->getServiciosAcabado();
+ // Servicios
+ $this->viewData['serviciosPreimpresion'] = $this->getServiciosPreimpresion();
$this->viewData['serviciosPreimpresion'] = $this->getServiciosPreimpresion();
$this->viewData['serviciosEncuadernacion'] = $this->getServiciosEncuadernacion();
$this->viewData['serviciosManipulado'] = $this->getServiciosManipulado();
- $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();
+ $this->viewData['serviciosAcabado'] = $this->getServiciosAcabado();
+
+ [$cambios_en_servicios, $servicios] = $this->getLineasServicios($presupuestoEntity);
+ $this->viewData['presupuestoEntity']->cambios_servicios=$cambios_en_servicios;
+
+ $this->viewData['serviciosEncuadernacionList'] = $servicios->serviciosEncuadernacion;
+ $this->viewData['serviciosAcabadosList'] = $servicios->serviciosAcabado;
+ $this->viewData['serviciosManipuladoList'] = $servicios->serviciosManipulado;
+ $this->viewData['serviciosPreimpresionList'] = $servicios->serviciosPreimpresion;
// Direciones presupuesto
- $this->viewData['presupuestoDirecciones'] = (new PresupuestoDireccionesModel())->getResource("", $id)->get()->getResultObject();
-
+ [$cambios_en_direcciones, $this->viewData['direccionesList']] = $this->getLineasDirecciones($presupuestoEntity);
+ $this->viewData['presupuestoEntity']->cambios_direcciones=$cambios_en_direcciones;
+
$this->viewData['POD'] = $this->getPOD();
$this->viewData['serviciosAutomaticos'] = [
@@ -378,8 +390,13 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
$this->viewData['formAction'] = route_to('updateCosidotapablanda', $id);
- $this->viewData['boxTitle'] = lang('Basic.global.edit2') . ' ' . $this->viewData['pageTitle'] . ' ' . lang('Basic.global.edit3');
+ // Si se ha llamado a esta funcion porque se ha duplicado el presupuesto
+ // se actualiza la bbdd para que sólo ejecute algunas funciones una vez
+ if($presupuestoEntity->is_duplicado){
+ $this->model->removeIsDuplicado($presupuestoEntity->id);
+ }
+ $this->viewData['boxTitle'] = lang('Basic.global.edit2') . ' ' . $this->viewData['pageTitle'] . ' ' . lang('Basic.global.edit3');
return $this->displayForm(__METHOD__, $id);
} // end function edit(...)
@@ -524,6 +541,7 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
$item->ws_externo_json_data = character_limiter($item->ws_externo_json_data, 100);
endif;
endforeach;
+
} else {
$isColor = $reqData['color'] ?? false;
@@ -548,7 +566,7 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
$cliente_id = $reqData['cliente_id'] ?? -1;
-
+ $resourceData = [];
if ($type == 'interior' || $type == 'guardas') {
@@ -568,6 +586,7 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
}
if ($type == 'guardas') {
+
$datosPedido->paginas_impresion = intval($reqData['paginas_impresion']) ?? 0;
// Para el caso de Fresado y Cosido tapa dura, las guardas son un diptico
// y hay que imprimirlas como "cosido" (dos hojas pegadas). En el caso de espiral
@@ -581,16 +600,21 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
$a_favor_fibra = $reqData['a_favor_fibra'] ?? false;
- $resourceData = $this->getCompIntData($type, $datosPedido, $papel_generico, $gramaje, $isColor, $isHq, $cliente_id, $datosTipolog, $a_favor_fibra);
+ $input_data = array(
+ 'uso' => $type,
+ 'tipo_impresion_id' => $tipo_impresion_id,
+ 'datosPedido' => $datosPedido,
+ 'papel_generico' => $papel_generico,
+ 'gramaje' => $gramaje,
+ 'isColor' => $isColor,
+ 'isHq' => $isHq,
+ 'cliente_id' => $cliente_id,
+ 'datosTipolog' => $datosTipolog,
+ 'a_favor_fibra' => $a_favor_fibra
+ );
- $newTokenHash = csrf_hash();
- $csrfTokenName = csrf_token();
- $data = [
- 'lineas' => $resourceData,
- $csrfTokenName => $newTokenHash
- ];
+ $resourceData = PresupuestoService::obtenerComparadorPlana($input_data);
- return $this->respond($data);
} else if ($type == 'interior_rot') {
$paginas = (object)array(
@@ -612,36 +636,45 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
array_push($datosTipolog, $data);
}
- $resourceData = $this->getCompIntRotData($datosPedido, $papel_generico, $gramaje, $paginas, $cliente_id, $datosTipolog);
-
- $newTokenHash = csrf_hash();
- $csrfTokenName = csrf_token();
- $data = [
- 'lineas' => $resourceData,
- $csrfTokenName => $newTokenHash
+ $input_data = [
+ 'datosPedido' => $datosPedido,
+ 'papel_generico' => $papel_generico,
+ 'gramaje' => $gramaje,
+ 'paginas' => $paginas,
+ 'cliente_id' => $cliente_id,
+ 'datosTipolog' => $datosTipolog
];
+
+ $resourceData = PresupuestoService::obtenerComparadorRotativa($input_data);
- return $this->respond($data);
} else if ($type == 'cubierta' || $type == 'sobrecubierta') {
$datosPedido->solapas = $reqData['solapas'];
$datosPedido->solapas_ancho = $reqData['solapas_ancho'];
$datosPedido->lomo = $reqData['lomo'];
- $datosPedido->anchoExteriores = PresupuestoService::getAnchoTotalExteriores($type, $tipo_impresion_id, $datosPedido);
- $datosPedido->altoExteriores = PresupuestoService::getAltoTotalExteriores($type, $tipo_impresion_id, $datosPedido);
- // Cubierta y sobrecubierta siempre color HQ
- $resourceData = $this->getCompIntData($type, $datosPedido, $papel_generico, $gramaje, $isColor, 1, $cliente_id);
-
- $newTokenHash = csrf_hash();
- $csrfTokenName = csrf_token();
- $data = [
- 'lineas' => $resourceData,
- $csrfTokenName => $newTokenHash
- ];
-
- return $this->respond($data);
+ $input_data = array(
+ 'uso' => $type,
+ 'tipo_impresion_id' => $tipo_impresion_id,
+ 'datosPedido' => $datosPedido,
+ 'papel_generico' => $papel_generico,
+ 'gramaje' => $gramaje,
+ 'isColor' => 1, // Cubierta y sobrecubierta siempre color HQ
+ 'isHq' => 1,
+ 'cliente_id' => $cliente_id,
+ );
+
+ $resourceData = PresupuestoService::obtenerComparadorPlana($input_data);
}
+
+ $newTokenHash = csrf_hash();
+ $csrfTokenName = csrf_token();
+ $data = [
+ 'lineas' => $resourceData,
+ $csrfTokenName => $newTokenHash
+ ];
+
+ return $this->respond($data);
}
return $this->respond(Collection::datatable(
@@ -809,215 +842,75 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
return $viewData;
}
+
-
- private function getCompIntData($uso, $datosPedido, $papel_generico, $gramaje, $isColor, $isHq, $cliente_id, $datosTipolog = null, $a_favor_fibra = false)
- {
- $tipo = $isColor ? ($isHq ? 'colorhq' : 'color') : ($isHq ? 'negrohq' : 'negro');
-
- $opciones_papel = PresupuestoService::get_opciones_papel($uso, $isColor);
-
- // 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) {
-
- $maquinamodel = new MaquinaModel();
- $maquinas = $maquinamodel->getMaquinaImpresionForPresupuesto(
- is_rotativa: 0,
- tarifa_tipo: $tipo,
- uso_tarifa: ($uso == 'guardas') ? 'interior' : $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['opciones_papel'] = $opciones_papel;
- $data['maquina'] = $maquina;
- $data['papel_generico'] = $papel_generico;
- $data['isColor'] = $isColor;
- $data['a_favor_fibra'] = $a_favor_fibra;
- $data['datosTipolog'] = $datosTipolog;
- $data['gramaje'] = $gramaje;
-
- $linea = PresupuestoService::getLineaPresupuestoPlana($data);
-
- if(empty($linea))
- continue;
-
- array_push($lineas, $linea);
- }
- }
- return $lineas;
- }
-
+ /**
+ * Duplica un presupuesto dado por su ID.
+ *
+ * Esta función duplica un presupuesto y todas sus entidades relacionadas como acabados, encuadernaciones, manipulados,
+ * preimpresiones, direcciones y lineas. El presupuesto duplicado se marca como tal y a su título se le añade
+ * una cadena 'duplicado'. La función devuelve un array con un estado de éxito y el ID del nuevo presupuesto.
+ *
+ * @param int $id El ID del presupuesto a duplicar.
+ * @return array Un array asociativo que contiene una clave 'success' que indica el estado de éxito de la operación,
+ * y una clave 'id' que contiene el ID del nuevo presupuesto si la operación fue exitosa.
+ * Si ocurre una excepción, la clave 'success' será false y una clave 'message' contendrá el mensaje de la excepción.
+ * @throws \Exception Si ocurre un error durante la operación.
+ */
private function duplicarPresupuesto($id){
- try{
-
- $presupuesto = $this->model->find($id);
- $presupuesto->titulo = $presupuesto->titulo .' - ' . lang('Presupuestos.duplicado');
- $new_id = $this->model->insert($presupuesto);
-
- $presupuestoAcabadosModel = model('App\Models\Presupuestos\PresupuestoAcabadosModel');
- foreach ($presupuestoAcabadosModel->where('presupuesto_id', $presupuesto->id)->findAll() as $acabado) {
- $acabado->presupuesto_id = $new_id;
- $presupuestoAcabadosModel->insert($acabado);
- }
-
- $presupuestoEncuadernacionesModel = model('App\Models\Presupuestos\PresupuestoEncuadernacionesModel');
- foreach ($presupuestoEncuadernacionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $encuadernacion) {
- $encuadernacion->presupuesto_id = $new_id;
- $presupuestoEncuadernacionesModel->insert($encuadernacion);
- }
-
- $presupuestoManipuladosModel = model('App\Models\Presupuestos\PresupuestoManipuladosModel');
- foreach ($presupuestoManipuladosModel->where('presupuesto_id', $presupuesto->id)->findAll() as $manipulado) {
- $manipulado->presupuesto_id = $new_id;
- $presupuestoManipuladosModel->insert($manipulado);
- }
-
- $presupuestoPreimpresionesModel = model('App\Models\Presupuestos\PresupuestoPreimpresionesModel');
- foreach ($presupuestoPreimpresionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $preimpresion) {
- $preimpresion->presupuesto_id = $new_id;
- $presupuestoPreimpresionesModel->insert($preimpresion);
- }
-
- $presupuestoDireccionesModel = model('App\Models\Presupuestos\PresupuestoDireccionesModel');
- foreach ($presupuestoDireccionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $direccion) {
- $direccion->presupuesto_id = $new_id;
- $presupuestoDireccionesModel->insert($direccion);
- }
-
- $presupuestoLineaModel = model('App\Models\Presupuestos\PresupuestoLineaModel');
- $presupuestoLineaModel->duplicateLineasPresupuesto($presupuesto->id, $new_id);
-
- return [
- 'success' => true,
- 'id' => $new_id
- ];
-
- }catch(\Exception $e){
- return [
- 'success' => false,
- 'message' => $e->getMessage()
- ];
- }
- }
-
-
-
- private function getCompIntRotData($datosPedido, $papel_generico, $gramaje, $paginas, $cliente_id, $datosTipolog = null)
- {
- $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;
- }
+ try{
+
+ $presupuesto = $this->model->find($id);
+ $presupuesto->titulo = $presupuesto->titulo .' - ' . lang('Presupuestos.duplicado');
+ $presupuesto->is_duplicado = 1;
+ $new_id = $this->model->insert($presupuesto);
+
+ $presupuestoAcabadosModel = model('App\Models\Presupuestos\PresupuestoAcabadosModel');
+ foreach ($presupuestoAcabadosModel->where('presupuesto_id', $presupuesto->id)->findAll() as $acabado) {
+ $acabado->presupuesto_id = $new_id;
+ $presupuestoAcabadosModel->insert($acabado);
+ }
+
+ $presupuestoEncuadernacionesModel = model('App\Models\Presupuestos\PresupuestoEncuadernacionesModel');
+ foreach ($presupuestoEncuadernacionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $encuadernacion) {
+ $encuadernacion->presupuesto_id = $new_id;
+ $presupuestoEncuadernacionesModel->insert($encuadernacion);
+ }
+
+ $presupuestoManipuladosModel = model('App\Models\Presupuestos\PresupuestoManipuladosModel');
+ foreach ($presupuestoManipuladosModel->where('presupuesto_id', $presupuesto->id)->findAll() as $manipulado) {
+ $manipulado->presupuesto_id = $new_id;
+ $presupuestoManipuladosModel->insert($manipulado);
+ }
+
+ $presupuestoPreimpresionesModel = model('App\Models\Presupuestos\PresupuestoPreimpresionesModel');
+ foreach ($presupuestoPreimpresionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $preimpresion) {
+ $preimpresion->presupuesto_id = $new_id;
+ $presupuestoPreimpresionesModel->insert($preimpresion);
+ }
+
+ $presupuestoDireccionesModel = model('App\Models\Presupuestos\PresupuestoDireccionesModel');
+ foreach ($presupuestoDireccionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $direccion) {
+ $direccion->presupuesto_id = $new_id;
+ $presupuestoDireccionesModel->insert($direccion);
+ }
+
+ $presupuestoLineaModel = model('App\Models\Presupuestos\PresupuestoLineaModel');
+ $presupuestoLineaModel->duplicateLineasPresupuesto($presupuesto->id, $new_id);
+
+ return [
+ 'success' => true,
+ 'id' => $new_id
+ ];
+
+ }catch(\Exception $e){
+ return [
+ 'success' => false,
+ 'message' => $e->getMessage()
+ ];
+ }
+ }
public function allItemsSelect()
{
@@ -1186,8 +1079,6 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
}
-
-
protected function getPapelGenericoRotativaNegro()
{
$model = model('App\Models\Configuracion\PapelGenericoModel');
@@ -1338,8 +1229,57 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
return $model->getPOD();
}
- protected function getDirecciones($presupuesto_id){
+ protected function getLineasPresupuesto($presupuestoEntity){
+ $lineas = (new PresupuestoLineaModel())->getLineasPresupuesto($presupuestoEntity->id);
+
+ $input_data = [];
+ $input_data['presupuesto'] = $presupuestoEntity;
+
+ return PresupuestoService::checkLineasPresupuesto($input_data, $lineas);
+ }
+
+ protected function getLineasServicios($presupuestoEntity){
+
+ $serviciosPresupuesto = (object)array();
+
+ $serviciosPresupuesto->serviciosAcabado = (new PresupuestoAcabadosModel())->getResource($presupuestoEntity->id)->get()->getResultObject();
+ $serviciosPresupuesto->serviciosPreimpresion = (new PresupuestoPreimpresionesModel())->getResource($presupuestoEntity->id)->get()->getResultObject();
+ $serviciosPresupuesto->serviciosEncuadernacion = (new PresupuestoEncuadernacionesModel())->getResource($presupuestoEntity->id)->get()->getResultObject();
+ $serviciosPresupuesto->serviciosManipulado = (new PresupuestoManipuladosModel())->getResource($presupuestoEntity->id)->get()->getResultObject();
+
+ $input_data = [];
+ $input_data['presupuesto_id'] = $presupuestoEntity->id;
+ $input_data['tipo_impresion_id'] = $presupuestoEntity->tipo_impresion_id;
+ $input_data['tirada'] = $presupuestoEntity->tirada;
+ $input_data['POD'] = $this->getPOD();
+ $input_data['paginas'] = $presupuestoEntity->paginas;
+ $input_data['is_duplicado'] = $presupuestoEntity->is_duplicado;
+
+ if($presupuestoEntity->papel_formato_personalizado){
+ $input_data['ancho'] = $presupuestoEntity->ancho;
+ $input_data['alto'] = $presupuestoEntity->alto;
+ }
+ else{
+ $model = model("App\Models\Configuracion\PapelFormatoModel");
+ $papel = $model->find($presupuestoEntity->papel_formato_id);
+ if($papel){
+ $input_data['ancho'] = $papel->ancho;
+ $input_data['alto'] = $papel->alto;
+ }
+ else{
+ $input_data['ancho'] = 0;
+ $input_data['alto'] = 0;
+ }
+ }
+
+ return PresupuestoService::checkLineasServicios($input_data, $serviciosPresupuesto);
+ }
+
+ protected function getLineasDirecciones($presupuestoEntity){
+
$model = model('App\Models\Presupuestos\PresupuestoDireccionesModel');
- return $model->where('presupuesto_id', $presupuesto_id)->findAll();
+ $direccionesEnvio = $model->where('presupuesto_id', $presupuestoEntity->id)->findAll();
+
+ return PresupuestoService::checkLineasEnvios($direccionesEnvio);
}
}
diff --git a/ci4/app/Controllers/Test.php b/ci4/app/Controllers/Test.php
index 9b7e760b..240f8103 100755
--- a/ci4/app/Controllers/Test.php
+++ b/ci4/app/Controllers/Test.php
@@ -17,19 +17,9 @@ class Test extends BaseController
public function index()
{
- $presupuestoModel = model('App\Models\Presupuestos\PresupuestoModel');
- $presupuesto = $presupuestoModel->find(44);
-
- $presupuestoAcabadosModel = model('App\Models\Presupuestos\PresupuestoAcabadosModel');
-
- echo '
';
- $presupuestoLineaModel = model('App\Models\Presupuestos\PresupuestoLineaModel');
- $presupuestoLineaModel->duplicateLineasPresupuesto(48, 75);
- echo '';
-
-
-
-
+ $status = PresupuestoService::checkMaquina(1995);
+ var_dump($status);
+ echo xdebug_info();
}
diff --git a/ci4/app/Entities/Presupuestos/PresupuestoEntity.php b/ci4/app/Entities/Presupuestos/PresupuestoEntity.php
index 1d4616b0..14ef818b 100755
--- a/ci4/app/Entities/Presupuestos/PresupuestoEntity.php
+++ b/ci4/app/Entities/Presupuestos/PresupuestoEntity.php
@@ -51,7 +51,8 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity
"comentarios_pdf" => null,
"comentarios_tarifa" => null,
"comentarios_produccion" => null,
- "lomo" => null,
+ "lomo_cubierta" => null,
+ "lomo_sobrecubierta" => null,
"total_presupuesto" => null,
"envios_recoge_cliente" => false,
"tirada_alternativa_json_data" => null,
@@ -86,6 +87,7 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity
"total_factor_ponderado" => null,
"acabado_cubierta_id" => null,
"acabado_sobrecubierta_id" => null,
+ "is_duplicado" => false,
];
protected $casts = [
"cliente_id" => "int",
@@ -120,7 +122,8 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity
"sobrecubiertas_ancho" => "float",
"merma" => "float",
"merma_cubierta" => "float",
- "lomo" => "?int",
+ "lomo_cubierta" => "?float",
+ "lomo_sobrecubierta" => "?float",
"total_presupuesto" => "?float",
"envios_recoge_cliente" => "boolean",
"aprobado_user_id" => "?int",
@@ -147,5 +150,6 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity
"total_factor_ponderado" => "?float",
"acabado_cubierta_id" => "int",
"acabado_sobrecubierta_id" => "int",
+ "is_duplicado" => "boolean",
];
}
diff --git a/ci4/app/Language/es/Presupuestos.php b/ci4/app/Language/es/Presupuestos.php
index 565eebec..92130f08 100755
--- a/ci4/app/Language/es/Presupuestos.php
+++ b/ci4/app/Language/es/Presupuestos.php
@@ -254,8 +254,15 @@ return [
'duplicado' => 'DUPLICADO',
'duplicarConTipologias' => 'El presupuesto contiene lineas de presupuesto con datos de tipologías. Se va a duplicar el presupuesto con las mismas tipologías',
+
+ 'presupuestoDuplicadoActualizacion' => 'El presupuesto ha sido creado duplicando un presupuesto existente. Se han actualizado los precios y las líneas de presupuesto con las tarifas actuales. Por favor, revíse la información.',
-
+ 'actualizacionPrecios' => 'Los siguientes datos del presupuesto se han actualizado debido a un cambio de tarifas o de los consumibles/maquinaria disponible en el sistema. Revise la información.',
+ 'actualizacionPreciosLP' => '
- Líneas de presupuesto',
+ 'actualizacionPreciosServicios' => '
- Servicios',
+ 'actualizacionPreciosEnvios' => '
- Precio envíos',
+
+
'validation' => [
'decimal' => 'El campo {field} debe contener un número decimal.',
'integer' => 'El campo {field} debe contener un número entero.',
diff --git a/ci4/app/Models/Configuracion/MaquinasTarifasImpresionModel.php b/ci4/app/Models/Configuracion/MaquinasTarifasImpresionModel.php
index 25fce102..b31c9743 100755
--- a/ci4/app/Models/Configuracion/MaquinasTarifasImpresionModel.php
+++ b/ci4/app/Models/Configuracion/MaquinasTarifasImpresionModel.php
@@ -95,7 +95,7 @@ class MaquinasTarifasImpresionModel extends \App\Models\GoBaseModel
$builder = $this->db
->table($this->table . " t1")
->select(
- "t1.id AS id, t1.tipo AS tipo, t1.precio AS precio, t1.uso AS uso, t1.margen AS margen"
+ "t1.id AS id, t1.tipo AS tipo, t1.precio AS precio, t1.uso AS uso, t1.margen AS margen, t1.is_deleted AS is_deleted, t2.nombre AS maquina"
);
//JJO
diff --git a/ci4/app/Models/Presupuestos/PresupuestoAcabadosModel.php b/ci4/app/Models/Presupuestos/PresupuestoAcabadosModel.php
index 78940187..b3e5b954 100755
--- a/ci4/app/Models/Presupuestos/PresupuestoAcabadosModel.php
+++ b/ci4/app/Models/Presupuestos/PresupuestoAcabadosModel.php
@@ -75,23 +75,7 @@ class PresupuestoAcabadosModel extends \App\Models\GoBaseModel
return [];
}
- private function calcularTarifa($tarifa, $tirada, $is_POD=false){
-
- $precio_unidad = floatval($tarifa->precio_min) - (floatval($tarifa->precio_min) - floatval($tarifa->precio_max))/($tarifa->tirada_max - $tarifa->tirada_min) * ($tirada - $tarifa->tirada_min);
- if ($tirada > $tarifa->tirada_max)
- $precio_unidad = $tarifa->precio_max;
- $precio_unidad = $precio_unidad* (1+ floatval($tarifa->margen)/100.0);
-
- $total = $precio_unidad * $tirada;
- $margen = floatval($tarifa->margen);
-
- if (!$is_POD){
- $total += floatval($tarifa->tarifa_importe_fijo);
- }
-
- return [$precio_unidad, $total, $margen];
- }
-
+
public function deleteAllServicios($presupuesto_id){
$this->db
@@ -261,4 +245,21 @@ class PresupuestoAcabadosModel extends \App\Models\GoBaseModel
return $builder;
}
+ private function calcularTarifa($tarifa, $tirada, $is_POD=false){
+
+ $precio_unidad = floatval($tarifa->precio_min) - (floatval($tarifa->precio_min) - floatval($tarifa->precio_max))/($tarifa->tirada_max - $tarifa->tirada_min) * ($tirada - $tarifa->tirada_min);
+ if ($tirada > $tarifa->tirada_max)
+ $precio_unidad = $tarifa->precio_max;
+ $precio_unidad = $precio_unidad* (1+ floatval($tarifa->margen)/100.0);
+
+ $total = $precio_unidad * $tirada;
+ $margen = floatval($tarifa->margen);
+
+ if (!$is_POD){
+ $total += floatval($tarifa->tarifa_importe_fijo);
+ }
+
+ return [$precio_unidad, $total, $margen];
+ }
+
}
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 a27d5d2a..ee1c4eb0 100755
--- a/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php
+++ b/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php
@@ -337,6 +337,81 @@ class PresupuestoLineaModel extends \App\Models\GoBaseModel
return $builder->orderBy("t1.id", "asc")->get()->getResultObject();
}
+ public function updatePreciosLineasPresupuesto($id_linea, $new_linea)
+ {
+ $rot_total_impresion = $new_linea['fields']['precio_click_pedido']??0.0 +
+ $new_linea['fields']['precio_tinta']??0.0+$new_linea['fields']['total_Corte']??0.0;
+
+ $data = [
+ "pliegos_precio" => $new_linea['fields']['precios_pliegos'],
+ "libro" => $new_linea['fields']['precio_libro'],
+ "total_papel_pedido" => round($new_linea['fields']['precio_pedido'], 2),
+ "margen_papel_pedido" => round($new_linea['fields']['margen_papel_pedido'], 2),
+ "mano" => $new_linea['fields']['mano'],
+ "precio_click" => round($new_linea['fields']['precio_click'], 6),
+ "precio_click_pedido" => round($new_linea['fields']['precio_click_pedido'], 2),
+ "margen_click_pedido" => round($new_linea['fields']['margen_click_pedido'], 2),
+ "tiempo_maquina" => strtotime($new_linea['fields']['tiempo_maquina']) - strtotime('TODAY'),
+ "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_mxm" => $new_linea['fields']['maquina_velocidad'] ?? 0,
+ "rotativa_resolucion" => $new_linea['fields']['resolucion'] ?? 0,
+ "rotativa_area_paginas" => $new_linea['fields']['superficie'] ?? 0,
+ "rotativa_num_gotas_negro" => $new_linea['fields']['num_gotas_negro'] ?? 0,
+ "rotativa_num_gotas_cyan" => $new_linea['fields']['num_gotas_cyan'] ?? 0,
+ "rotativa_num_gotas_magenta" => $new_linea['fields']['num_gotas_magenta'] ?? 0,
+ "rotativa_num_gotas_amarillo" => $new_linea['fields']['num_gotas_amarillo'] ?? 0,
+ "rotativa_num_gotas_cg" => $new_linea['fields']['num_gotas_cg'] ?? 0,
+ "rotativa_peso_gotas_negro" => $new_linea["fields"]["peso_gotas_negro"] ?? 0,
+ "rotativa_peso_gotas_cyan" => $new_linea['fields']['peso_gotas_cyan'] ?? 0,
+ "rotativa_peso_gotas_magenta" => $new_linea['fields']['peso_gotas_magenta'] ?? 0,
+ "rotativa_peso_gotas_amarillo" => $new_linea['fields']['peso_gotas_amarillo'] ?? 0,
+ "rotativa_peso_gotas_cg" => $new_linea['fields']['peso_gotas_cg'] ?? 0,
+ "rotativa_peso_gotas_negro_pedido" => $new_linea["fields"]["peso_gotas_negro_pedido"] ?? 0,
+ "rotativa_peso_gotas_cyan_pedido" => $new_linea["fields"]["peso_gotas_cyan_pedido"] ?? 0,
+ "rotativa_peso_gotas_magenta_pedido" => $new_linea["fields"]["peso_gotas_magenta_pedido"] ?? 0,
+ "rotativa_peso_gotas_amarillo_pedido" => $new_linea["fields"]["peso_gotas_amarillo_pedido"] ?? 0,
+ "rotativa_peso_gotas_cg_pedido" => $new_linea["fields"]["peso_gotas_cg_pedido"] ?? 0,
+ "rotativa_precio_pag_negro" => $new_linea['fields']['precio_pagina_negro'] ?? 0,
+ "rotativa_precio_pag_color" => $new_linea['fields']['precio_pagina_color'] ?? 0,
+ "rotativa_factor_altura" => $new_linea['fields']['factor_altura'] ?? 0,
+ "rotativa_factor_anchura" => $new_linea['fields']['factor_anchura'] ?? 0,
+ "rotativa_pag_por_pliego" => $new_linea['fields']['paginas_por_pliego'] ?? 0,
+ "rotativa_metros_libro" => $new_linea['fields']['metros_papel_libro'] ?? 0,
+ "rotativa_metros_total" => $new_linea['fields']['metros_papel_total'] ?? 0,
+ "rotativa_clicks_libro" => $new_linea['fields']['clicks_libro'] ?? 0,
+ "rotativa_clicks_total" => $new_linea['fields']['clicks_pedido'] ?? 0,
+ "rotativa_precio_tinta" => $new_linea['fields']['precio_tinta'] ?? 0,
+ "rotativa_velocidad_corte" => $new_linea['fields']['velocidad_corte'] ?? 0,
+ "rotativa_tiempo_corte" => $new_linea['fields']['tiempo_corte'] ?? 0,
+ "rotativa_precio_hora_corte" => $new_linea['fields']['precio_hora_corte'] ?? 0,
+ "rotativa_total_corte" => $new_linea['fields']['total_corte'] ?? 0,
+ "horas_maquina" => round($new_linea['fields']['horas_maquina'],4),
+ "precio_hora" => $new_linea['fields']['precio_hora'] ?? 0,
+ "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,
+ ];
+
+ 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)
+ ->set($data)
+ ->update();
+ }
+
public function deleteLineasPresupuesto($presupuesto_id)
{
$this->db
diff --git a/ci4/app/Models/Presupuestos/PresupuestoModel.php b/ci4/app/Models/Presupuestos/PresupuestoModel.php
index 6d9f593d..687bd03f 100755
--- a/ci4/app/Models/Presupuestos/PresupuestoModel.php
+++ b/ci4/app/Models/Presupuestos/PresupuestoModel.php
@@ -72,7 +72,8 @@ class PresupuestoModel extends \App\Models\GoBaseModel
"comentarios_pdf",
"comentarios_tarifa",
"comentarios_produccion",
- "lomo",
+ "lomo_cubierta",
+ "lomo_sobrecubierta",
"total_presupuesto",
"envios_recoge_cliente",
"tirada_alternativa_json_data",
@@ -104,6 +105,7 @@ class PresupuestoModel extends \App\Models\GoBaseModel
"total_factor_ponderado",
"acabado_cubierta_id",
"acabado_sobrecubierta_id",
+ "is_duplicado"
];
protected $returnType = "App\Entities\Presupuestos\PresupuestoEntity";
@@ -263,6 +265,13 @@ class PresupuestoModel extends \App\Models\GoBaseModel
}
+ public function removeIsDuplicado($presupuesto_id){
+ $this->db
+ ->table($this->table . " t1")
+ ->where('id', $presupuesto_id)
+ ->set('is_duplicado', false)
+ ->update();
+ }
/**
* Get resource data for creating PDFs.
@@ -277,8 +286,9 @@ class PresupuestoModel extends \App\Models\GoBaseModel
->table($this->table . " t1")
->select(
"t1.id AS id, t1.created_at AS fecha, t1.titulo AS titulo, t1.autor AS autor, t1.ferro AS ferro,
- t1.ferro_digital AS ferro_digital, t1.prototipo AS prototipo, t1.solapas AS solapas, t1.lomo AS lomo,
- t1.solapas_ancho AS solapas_ancho, t1.paginas AS paginas, t1.tirada AS tirada, t1.coleccion AS coleccion,
+ t1.ferro_digital AS ferro_digital, t1.prototipo AS prototipo, t1.solapas AS solapas, t1.solapas_sobrecubierta AS solapas_sobrecubierta,
+ t1.lomo_cubierta AS lomo_cubierta, t1.lomo_sobrecubierta AS lomo_sobrecubierta,
+ t1.solapas_ancho AS solapas_ancho, t1.solapas_sobrecubierta_ancho AS solapas_sobrecubierta_ancho, t1.paginas AS paginas, t1.tirada AS tirada, t1.coleccion AS coleccion,
t1.retractilado AS retractilado, t1.guardas AS guardas, t1.marcapaginas AS marcapaginas,
t1.comentarios_pdf AS comentarios_pdf, t1.tirada_alternativa_json_data AS tiradas_alternativas,
t1.total_presupuesto AS total_presupuesto, t1.total_precio_unidad AS total_precio_unidad,
@@ -297,6 +307,4 @@ class PresupuestoModel extends \App\Models\GoBaseModel
return $builder;
}
-
-
}
diff --git a/ci4/app/Services/PresupuestoService.php b/ci4/app/Services/PresupuestoService.php
index e2b865e4..cc0f6d2d 100755
--- a/ci4/app/Services/PresupuestoService.php
+++ b/ci4/app/Services/PresupuestoService.php
@@ -6,6 +6,20 @@ use CodeIgniter\Config\BaseService;
use App\Models\Configuracion\MaquinasTarifasImpresionModel;
use App\Models\Clientes\ClientePreciosModel;
+use App\Models\Configuracion\MaquinaModel;
+use App\Models\Configuracion\PapelImpresionModel;
+use App\Models\Configuracion\PapelGenericoModel;
+use App\Models\Configuracion\TipoPresupuestoModel;
+use App\Models\Configuracion\PapelFormatoModel;
+
+use App\Models\Presupuestos\PresupuestoLineaModel;
+
+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;
@@ -218,6 +232,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);
@@ -449,6 +466,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);
@@ -949,6 +970,803 @@ class PresupuestoService extends BaseService
return $opciones_papel;
}
+
+ public static function actualizarResumenPresupuesto($presupuesto_id)
+ {
+ $presupuesto = (new PresupuestoModel())->find($presupuesto_id);
+ $lineas = (new LineaPresupuestoModel())->where('presupuesto_id', $presupuesto_id)->findAll();
+
+ }
+
+ public static function checkLineasPresupuesto($input_data, $array_lineas)
+ {
+
+ $data['tipo_impresion_id'] = ($input_data['presupuesto'])->tipo_impresion_id;
+ $data['tirada'] = ($input_data['presupuesto'])->tirada;
+ $data['merma'] = ($input_data['presupuesto'])->merma;
+ $data['papel_formato_id'] = ($input_data['presupuesto'])->papel_formato_id;
+ $data['papel_formato_personalizado'] = ($input_data['presupuesto'])->papel_formato_personalizado;
+ $data['papel_formato_ancho'] = ($input_data['presupuesto'])->papel_formato_ancho;
+ $data['papel_formato_alto'] = ($input_data['presupuesto'])->papel_formato_alto;
+ $data['cliente_id'] = ($input_data['presupuesto'])->cliente_id;
+ $data['solapas'] = ($input_data['presupuesto'])->solapas;
+ $data['solapas_ancho'] = ($input_data['presupuesto'])->solapas_ancho;
+ $data['solapas_sobrecubierta'] = ($input_data['presupuesto'])->solapas_sobrecubierta;
+ $data['solapas_ancho_sobrecubierta'] = ($input_data['presupuesto'])->solapas_ancho_sobrecubierta;
+ $data['lomo_cubierta'] = ($input_data['presupuesto'])->lomo_cubierta;
+ $data['lomo_sobrecubierta'] = ($input_data['presupuesto'])->lomo_sobrecubierta;
+
+ $cambios = false;
+
+ $lineas = [];
+
+ foreach ($array_lineas as $linea) {
+
+ // Si el papel o la máquina no existen, se utiliza la más barata del comparador
+ if (!PresupuestoService::checkMaquina($linea->maquina_id) || !PresupuestoService::checkPapelImpresion($linea->papel_impresion_id)) {
+
+ if(($input_data['presupuesto'])->papel_formato_personalizado == 0){
+ $papel_formato = (new PapelFormatoModel())->find(($input_data['presupuesto'])->papel_formato_id);
+ $ancho = $papel_formato->ancho;
+ $alto = $papel_formato->alto;
+ }
+ else
+ {
+ $ancho = ($input_data['presupuesto'])->papel_formato_ancho;
+ $alto = ($input_data['presupuesto'])->papel_formato_alto;
+ }
+
+ $papel_generico = (new PapelGenericoModel)->find($linea->papel_id);
+ $papel_generico = [
+ 'id' => $papel_generico->id,
+ 'nombre' => $papel_generico->nombre,
+ ];
+
+ // Hay que ver si es rotativa o plana
+ // Si es rotativa
+ if(str_contains($linea->tipo, '_rot_')){
+
+ $datos = [
+ 'datosPedido' => (object)array(
+ 'paginas' => ($input_data['presupuesto'])->paginas,
+ 'tirada' => ($input_data['presupuesto'])->tirada,
+ 'merma' => ($input_data['presupuesto'])->merma,
+ 'ancho' => $ancho,
+ 'alto' => $alto,
+ 'a_favor_fibra' => $linea->rotativa_a_favor_fibra,
+ 'isCosido' => (new TipoPresupuestoModel())->get_isCosido(($input_data['presupuesto'])->tipo_impresion_id),
+ ),
+ 'papel_generico' => $papel_generico,
+ 'gramaje' => $linea->gramaje,
+ 'paginas' => (object)array(
+ 'negro' => ($input_data['presupuesto'])->paginas - $linea->rotativa_pag_color,
+ 'color' => $linea->rotativa_pag_color,
+ ),
+ 'cliente_id' => ($input_data['presupuesto'])->cliente_id,
+ 'datosTipolog' => [(object)array(
+ 'negro' => $linea->rotativa_negro,
+ 'cyan' => $linea->rotativa_cyan,
+ 'magenta' => $linea->rotativa_magenta,
+ 'amarillo' => $linea->rotativa_amarillo,
+ 'cg' => $linea->rotativa_cg,
+ 'gota_negro' => $linea->rotativa_gota_negro,
+ 'gota_color' => $linea->rotativa_gota_color,
+ )]
+ ];
+
+ $comp_data = PresupuestoService::obtenerComparadorRotativa($datos);
+ }
+ // Si es plana
+ else{
+
+ $datos = [
+ 'tipo_impresion_id' => $data['tipo_impresion_id'],
+ 'datosPedido' => (object)array(
+ 'paginas' => ($input_data['presupuesto'])->paginas,
+ 'tirada' => ($input_data['presupuesto'])->tirada,
+ 'merma' => ($input_data['presupuesto'])->merma,
+ 'ancho' => $ancho,
+ 'alto' => $alto,
+ 'a_favor_fibra' => $linea->rotativa_a_favor_fibra,
+ 'isCosido' => (new TipoPresupuestoModel())->get_isCosido(($input_data['presupuesto'])->tipo_impresion_id),
+ ),
+ 'a_favor_fibra' => $linea->rotativa_a_favor_fibra,
+ 'papel_generico' => $papel_generico,
+ 'gramaje' => $linea->gramaje,
+ 'cliente_id' => ($input_data['presupuesto'])->cliente_id,
+ 'datosTipolog' => [(object)array(
+ 'negro' => $linea->rotativa_negro,
+ 'cyan' => $linea->rotativa_cyan,
+ 'magenta' => $linea->rotativa_magenta,
+ 'amarillo' => $linea->rotativa_amarillo,
+ 'cg' => $linea->rotativa_cg,
+ 'gota_negro' => $linea->rotativa_gota_negro,
+ 'gota_color' => $linea->rotativa_gota_color,
+ )]
+ ];
+
+ // si la línea es cubierta o sobrecubierta, es HQ y color
+ if( str_contains($linea->tipo, 'cubierta') ){
+ $datos['isColor'] = true;
+ $datos['isHq'] = true;
+
+ // además se añade los campos de lomo y solapas y el uso
+ if( str_contains($linea->tipo, 'sobrecubierta') ){
+ $datos['datosPedido']->solapas = ($input_data['presupuesto'])->solapas_sobrecubierta;
+ $datos['datosPedido']->solapas_ancho = ($input_data['presupuesto'])->solapas_ancho_sobrecubierta;
+ $datos['datosPedido']->lomo = ($input_data['presupuesto'])->lomo_sobrecubierta;
+ $datos['uso'] = 'sobrecubierta';
+ }
+ else{
+ $datos['datosPedido']->solapas = ($input_data['presupuesto'])->solapas;
+ $datos['datosPedido']->solapas_ancho = ($input_data['presupuesto'])->solapas_ancho;
+ $datos['datosPedido']->lomo = ($input_data['presupuesto'])->lomo_cubierta;
+ $datos['uso'] = 'cubierta';
+ }
+ }
+ else{
+ $datos['isColor'] = str_contains($linea->tipo, '_color') ? true : false;
+ $datos['isHq'] = str_contains($linea->tipo, 'hq') ? true : false;
+ $datos['uso'] = 'interior';
+ }
+
+ if( str_contains($linea->tipo, 'guardas') ){
+ $datos['uso'] = 'guardas';
+ $datos['datosPedido']->paginas_impresion = linea->paginas_impresion;
+ }
+
+ $comp_data = PresupuestoService::obtenerComparadorPlana($datos);
+
+ }
+
+ // se ordena $comp_data usando el campo ['fields]['total_impresion']
+ usort($comp_data, function($a, $b) {
+ return $a['fields']['total_impresion'] <=> $b['fields']['total_impresion'];
+ });
+ (new PresupuestoLineaModel())->updatePreciosLineasPresupuesto($linea->id, $comp_data[0]);
+ $linea_to_save = (new PresupuestoLineaModel())->find($linea->id);
+ $cambios = true;
+ array_push($lineas, $linea_to_save);
+ }
+ // Si existe el papel y la máquina, se recalcula el precio con los mismos
+ // parámetros y se comprueba
+ else{
+ $nueva_linea = PresupuestoService::obtenerValorLineaPresupuesto($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, $lineas];
+ }
+
+
+
+ private static function obtenerValorLineaPresupuesto($input_data, $linea){
+
+ $tipo_impresion_id = $input_data['tipo_impresion_id'];
+ $tirada = $input_data['tirada'];
+ $merma = $input_data['merma'];
+ $papel_formato_id = $input_data['papel_formato_id'];
+ $papel_formato_personalizado = $input_data['papel_formato_personalizado'];
+ $ancho = $input_data['papel_formato_ancho'];
+ $alto = $input_data['papel_formato_alto'];
+ $cliente_id = $input_data['cliente_id'];
+ $solapas = $input_data['solapas'];
+ $solapas_sobrecubierta = $input_data['solapas_sobrecubierta'];
+ $solapas_ancho_cubierta = $input_data['solapas_ancho'];
+ $solapas_ancho_sobrecubierta = $input_data['solapas_ancho_sobrecubierta'];
+ $lomo_cubierta = $input_data['lomo_cubierta'];
+ $lomo_sobrecubierta = $input_data['lomo_sobrecubierta'];
+
+ if($papel_formato_personalizado == 0){
+ $papel_formato = (new PapelFormatoModel())->find($papel_formato_id);
+ $ancho = $papel_formato->ancho;
+ $alto = $papel_formato->alto;
+ }
+
+ $data = [];
+ $output_data = [];
+
+ $papel_impresion = (new PapelImpresionModel())->find($linea->papel_impresion_id);
+ $maquina = (new MaquinaModel())->find($linea->maquina_id);
+ $maquina->maquina_id = $maquina->id;
+ $maquina->maquina = $maquina->nombre;
+ $papel_generico = (new PapelGenericoModel())->find($linea->papel_id);
+ $papel_generico = array(
+ 'id' => $papel_generico->id,
+ 'nombre' => $papel_generico->nombre,
+ );
+
+ $data['datosPedido'] = (object)array(
+ 'paginas' => $linea->paginas,
+ 'tirada' => $tirada,
+ 'merma' => $merma,
+ 'ancho' => $ancho,
+ 'alto' => $alto,
+ 'a_favor_fibra' => $linea->rotativa_a_favor_fibra,
+ 'isCosido' => (new TipoPresupuestoModel())->get_isCosido($tipo_impresion_id),
+ );
+ $data['cliente_id'] = $cliente_id;
+ $data['papel'] = $papel_impresion;
+ $data['maquina'] = $maquina;
+ $data['papel_generico'] = $papel_generico;
+ $data['a_favor_fibra'] = $linea->rotativa_a_favor_fibra;
+ $data['datosTipolog'] = [(object)array(
+ 'negro' => $linea->rotativa_negro,
+ 'cyan' => $linea->rotativa_cyan,
+ 'magenta' => $linea->rotativa_magenta,
+ 'amarillo' => $linea->rotativa_amarillo,
+ 'cg' => $linea->rotativa_cg,
+ 'gota_negro' => $linea->rotativa_gota_negro,
+ 'gota_color' => $linea->rotativa_gota_color,
+ )];
+ $data['gramaje'] = $linea->gramaje;
+
+ switch($linea->tipo){
+
+ case 'lp_bn':
+ case 'lp_bnhq':
+ case 'lp_color':
+ case 'lp_colorhq':
+ case 'lp_guardas':
+ $data['uso'] = 'interior';
+ $isColor = strpos($linea->tipo, 'color') !== false;
+ $isHq = strpos($linea->tipo, 'hq') !== false;
+ $tipo = $isColor ? ($isHq ? 'colorhq' : 'color') : ($isHq ? 'negrohq' : 'negro');
+ $opciones_papel = PresupuestoService::get_opciones_papel('interior', $isColor);
+
+ if($linea->tipo == 'lp_guardas'){
+ $data['datosPedido']->paginas_impresion = $linea->paginas_impresion;
+ // Para el caso de Fresado y Cosido tapa dura, las guardas son un diptico
+ // y hay que imprimirlas como "cosido" (dos hojas pegadas). En el caso de espiral
+ // o wire-o tapa dura, las guardas se imprimen como hojas sueltas
+ if ($tipo_impresion_id == 1 || $tipo_impresion_id == 3) {
+ $data['datosPedido']->isCosido = true;
+ } else if ($tipo_impresion_id == 5 || $tipo_impresion_id == 7) {
+ $data['datosPedido']->isCosido = false;
+ }
+ }
+
+ $data['tipo'] = $tipo;
+ $data['isColor'] = $isColor;
+ $data['opciones_papel'] = $opciones_papel;
+
+ $output_data = PresupuestoService::getLineaPresupuestoPlana($data);
+ break;
+
+
+ case 'lp_rot_color':
+ case 'lp_rot_bn':
+ $data['uso'] = 'interior';
+ $tipo = $linea->rotativa_pag_color>0 ? 'color' : 'negro';
+ $data['paginas'] = (object)array(
+ 'negro' => $linea->paginas-$linea->rotativa_pag_color,
+ 'color' => $linea->rotativa_pag_color,
+ );
+
+ $data['tipo'] = $tipo;
+ $data['parametrosRotativa'] = (object)array(
+ 'a_favor_fibra' => $linea->rotativa_a_favor_fibra,
+ 'bnPages' => $data['paginas']->negro,
+ 'colorPages' => $data['paginas']->color,
+ 'rotativa_negro' => $linea->rotativa_negro,
+ 'rotativa_cyan' => $linea->rotativa_cyan,
+ 'rotativa_magenta' => $linea->rotativa_magenta,
+ 'rotativa_amarillo' => $linea->rotativa_amarillo,
+ 'rotativa_gota_negro' => $linea->rotativa_gota_negro,
+ 'rotativa_gota_color' => $linea->rotativa_gota_color,
+ );
+
+ $output_data = PresupuestoService::getLineaPresupuestoRotativa($data);
+ break;
+
+ case 'lp_cubierta':
+ case 'lp_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;
+ $data['datosPedido']->solapas_ancho = ($linea->tipo == 'lp cubierta')? $solapas_ancho_cubierta : $solapas_ancho_sobrecubierta;
+ $data['datosPedido']->lomo = ($linea->tipo == 'lp cubierta')? $lomo_cubierta : $lomo_sobrecubierta;
+
+ $opciones_papel = PresupuestoService::get_opciones_papel($data['uso'], true);
+ $data['opciones_papel'] = $opciones_papel;
+
+ $data['datosPedido']->anchoExteriores = PresupuestoService::getAnchoTotalExteriores($data['uso'], $tipo_impresion_id, $data['datosPedido']);
+ $data['datosPedido']->altoExteriores = PresupuestoService::getAltoTotalExteriores($data['uso'], $tipo_impresion_id, $data['datosPedido']);
+
+ $output_data = PresupuestoService::getLineaPresupuestoPlana($data);
+ break;
+ }
+ return $output_data;
+ }
+
+ // Funcion que procesa los servicios y actualiza los precios en caso de cambio
+ public static function checkLineasServicios($input_data, $servicios){
+
+ $cambio_en_servicios = false;
+ $cambio = false;
+
+ if(count($servicios->serviciosAcabado)>0){
+
+ [$cambio, $servicios->serviciosAcabado] =
+ PresupuestoService::procesarServiciosAcabado($input_data, $servicios->serviciosAcabado);
+
+ $cambio_en_servicios = $cambio_en_servicios? $cambio_en_servicios: $cambio;
+ }
+
+ if(count($servicios->serviciosManipulado)>0){
+
+ [$cambio, $servicios->serviciosManipulado] =
+ PresupuestoService::procesarServiciosManipulado($input_data, $servicios->serviciosManipulado);
+
+ $cambio_en_servicios = $cambio_en_servicios? $cambio_en_servicios: $cambio;
+ }
+
+ if(count($servicios->serviciosEncuadernacion)>0){
+
+ [$cambio, $servicios->serviciosEncuadernacion] =
+ PresupuestoService::procesarServiciosEncuadernacion($input_data, $servicios->serviciosEncuadernacion);
+
+ $cambio_en_servicios = $cambio_en_servicios? $cambio_en_servicios: $cambio;
+ }
+
+ // Los servicios de preimpresion se dejan tal y como esten
+
+ return [$cambio_en_servicios, $servicios];
+ }
+
+
+ // Funcion que procesa los servicios de acabado del presupuesto
+ // y actualiza los precios en caso de cambio de valor en precio_unidad
+ private static function procesarServiciosAcabado($input_data, $servicios){
+
+ $serviciosUpdated = [];
+ $cambio = false;
+
+ $model = new PresupuestoAcabadosModel();
+ foreach ($servicios as $servicio) {
+
+ $nueva_tarifa = $model->getPrecioTarifa($servicio->tarifa_acabado_id, $input_data['tirada'], $input_data['POD']);
+ if($nueva_tarifa && count($nueva_tarifa)>0){
+ if(round($nueva_tarifa[0]->precio_unidad, 2) != $servicio->precio_unidad ||
+ $nueva_tarifa[0]->margen != $servicio->margen){
+
+ $servicio->precio_unidad = round($nueva_tarifa[0]->precio_unidad, 2);
+ $servicio->precio_total = round($nueva_tarifa[0]->total, 2);
+ $servicio->margen = round($nueva_tarifa[0]->margen);
+ $cambio = true;
+ }
+ array_push($serviciosUpdated, $servicio);
+ $servicio_temp = $servicio;
+ $servicio_temp->tarifa_id = $servicio_temp->tarifa_acabado_id;
+ $model->updateTarifas($input_data['presupuesto_id'], array($servicio_temp));
+
+ }
+ }
+
+ return [$cambio, $serviciosUpdated];
+ }
+
+ // Funcion que procesa los servicios de manipulado del presupuesto
+ // y actualiza los precios en caso de cambio de valor en precio_unidad
+ private static function procesarServiciosManipulado($input_data, $servicios){
+
+ $serviciosUpdated = [];
+ $cambio = false;
+
+ $model = new PresupuestoManipuladosModel();
+ foreach ($servicios as $servicio) {
+ $count = 0;
+ $nueva_tarifa = $model->getPrecioTarifa($servicio->tarifa_manipulado_id, $input_data['tirada'], $input_data['POD']);
+ if($nueva_tarifa && count($nueva_tarifa)>0){
+ if(round($nueva_tarifa[0]->precio_unidad, 2) != $servicio->precio_unidad ||
+ $nueva_tarifa[0]->margen != $servicio->margen){
+
+ $servicio->precio_unidad = round($nueva_tarifa[0]->precio_unidad, 2);
+ $servicio->precio_total = round($nueva_tarifa[0]->total, 2);
+ $servicio->margen = round($nueva_tarifa[0]->margen);
+ $cambio = true;
+ }
+ array_push($serviciosUpdated, $servicio);
+ $servicio_temp = $servicio;
+ $servicio_temp->tarifa_id = $servicio_temp->tarifa_manipulado_id;
+ $model->updateTarifas($input_data['presupuesto_id'], array($servicio_temp));
+
+ }
+ }
+
+ return [$cambio, $serviciosUpdated];
+ }
+
+
+ // Funcion que procesa los servicios de encuadernacion del presupuesto
+ // y actualiza los precios en caso de cambio de valor en precio_unidad
+ private static function procesarServiciosEncuadernacion($input_data, $servicios){
+
+ $serviciosUpdated = [];
+ $cambio = false;
+
+ $model = new PresupuestoEncuadernacionesModel();
+ $tarifaModel = model('App\Models\Tarifas\TarifaEncuadernacionModel');
+
+ foreach ($servicios as $servicio) {
+
+ // Si es un presupuesto duplicado hay que buscar el proveedor más barato
+ if($input_data['is_duplicado']){
+ if($tarifaModel->isTarifaPorHoras($servicio->tarifa_encuadernado_id)){
+ $nueva_tarifa = $model->getPrecioTarifaHoras(
+ $servicio->tarifa_encuadernado_id,
+ $input_data['paginas'],
+ $input_data['tirada'],
+ -1,
+ $input_data['POD']);
+ }else{
+ $nueva_tarifa = $model->getPrecioTarifa(
+ $servicio->tarifa_encuadernado_id,
+ $input_data['paginas'],
+ $input_data['tirada'],
+ $input_data['ancho'],
+ $input_data['alto'],
+ -1,
+ $input_data['POD']);
+ }
+
+ }
+ // En caso de que el presupuesto no sea duplicado, recalcular la tarifa
+ // con el mismo proveedor
+ else{
+ if($tarifaModel->isTarifaPorHoras($servicio->tarifa_encuadernado_id)){
+ $nueva_tarifa = $model->getPrecioTarifaHoras(
+ $servicio->tarifa_encuadernado_id,
+ $input_data['paginas'],
+ $input_data['tirada'],
+ $servicio->proveedor_id,
+ $input_data['POD']);
+ }else{
+ $nueva_tarifa = $model->getPrecioTarifa(
+ $servicio->tarifa_encuadernado_id,
+ $input_data['paginas'],
+ $input_data['tirada'],
+ $input_data['ancho'],
+ $input_data['alto'],
+ $servicio->proveedor_id,
+ $input_data['POD']);
+ }
+ }
+
+
+ if($nueva_tarifa && count($nueva_tarifa)>0){
+ if(!isset($nueva_tarifa[0]->proveedor_id)){
+ $nueva_tarifa[0]->proveedor_id = null;
+ }
+ // Si el presupuesto no es duplicado, se comprueba que
+ // no ha cambiado el precio unidad
+ if(round($nueva_tarifa[0]->precio_unidad, 2) != $servicio->precio_unidad ||
+ $nueva_tarifa[0]->margen != $servicio->margen){
+
+ $servicio->precio_unidad = round($nueva_tarifa[0]->precio_unidad, 2);
+ $servicio->precio_total = round($nueva_tarifa[0]->total, 2);
+ $servicio->margen = round($nueva_tarifa[0]->margen);
+ $cambio = true;
+ }
+ else if($input_data['is_duplicado'] && $nueva_tarifa[0]->proveedor_id != $servicio->proveedor_id){
+ $servicio->precio_unidad = round($nueva_tarifa[0]->precio_unidad, 2);
+ $servicio->precio_total = round($nueva_tarifa[0]->total, 2);
+ $servicio->margen = round($nueva_tarifa[0]->margen);
+ $servicio->proveedor = $nueva_tarifa[0]->proveedor;
+ $servicio->proveedor_id = $nueva_tarifa[0]->proveedor_id;
+ $cambio = true;
+ }
+ array_push($serviciosUpdated, $servicio);
+ $servicio_temp = $servicio;
+ $servicio_temp->tarifa_id = $servicio_temp->tarifa_encuadernado_id;
+ $model->updateTarifas($input_data['presupuesto_id'], array($servicio_temp));
+ }
+ }
+
+ return [$cambio, $serviciosUpdated];
+ }
+
+
+ public static function checkLineasEnvios($envios){
+
+ $cambio = false;
+
+ if(count($envios)>0){
+ $model = new TarifaEnvioModel();
+
+ foreach ($envios as $envio) {
+ $paisId = $envio->pais_id;
+ $cp= $envio->cp;
+ $peso= $envio->peso;
+ $tipo_envio= $envio->entregaPieCalle==1?'palets':'cajas';
+
+ $nueva_tarifa = $model->getTarifaEnvio($paisId, $cp, $peso, $tipo_envio);
+
+ if($nueva_tarifa && count($nueva_tarifa)>0){
+ $coste = 0;
+ $margen = 0;
+ if($peso>$nueva_tarifa[0]->peso_max){
+ $coste += floatval($nueva_tarifa[0]->peso_min) + ($peso-floatval($nueva_tarifa[0]->peso_min))*floatval($nueva_tarifa[0]->precio_adicional);
+ }
+ // si no se calcula linealmente
+ else{
+ $m=(floatval($nueva_tarifa[0]->precio_max)-floatval($nueva_tarifa[0]->precio_min)) / ((floatval($nueva_tarifa[0]->peso_max)-floatval($nueva_tarifa[0]->peso_min)));
+ $b=floatval($nueva_tarifa[0]->precio_max)-$m*floatval($nueva_tarifa[0]->peso_max);
+ $coste += floatval($m*$peso+$b);
+ }
+ $margen += $coste*floatval($nueva_tarifa[0]->margen)/100.0;
+
+ if(round($coste, 2) != $envio->precio ||
+ $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);
+ }
+
+ }
+
+ }
+ }
+
+ return [$cambio, $envios];
+ }
+
+
+ // Funcion que obtiene el coste para impresión en rotativa
+ // y devuelve un array con los datos de la lineas
+ // Parametros de entrada: $input_data es un array con los siguientes datos:
+ // - paginas: objeto con las paginas a imprimir en color y negro
+ // - datosPedido: un objeto que contiene los siguientes campos
+ // * paginas: numero total de páginas
+ // * tirada: numero de ejemplares a imprimir
+ // * merma: número de ejemplares extra a imprimir
+ // * ancho: ancho del libro
+ // * alto: alto del libro
+ // * a_favor_fibra: dirección de la impresión
+ // * isCosido: indica si el libro es cosido o no
+ // - papel_generico: objeto que contiene el id y el nombre del papel generico
+ // - gramaje: gramaje del papel seleccionado
+ // - cliente_id: id del cliente al que va destinado el presupuesto
+ // - datosTipolog: datos referentes a las tintas
+ public static function obtenerComparadorRotativa($input_data){
+
+ $paginas = $input_data['paginas'];
+ $datosPedido = $input_data['datosPedido'];
+ $gramaje = $input_data['gramaje'];
+ $papel_generico = $input_data['papel_generico'];
+ $cliente_id = $input_data['cliente_id'];
+ $datosTipolog = $input_data['datosTipolog'];
+
+ $tipo = $paginas->color > 0 ? 'color' : 'negro';
+ $uso = 'interior';
+
+ $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,
+ );
+
+ $data['uso'] = $uso;
+ $data['tipo'] = $tipo;
+ $data['datosPedido'] = $datosPedido;
+ $data['cliente_id'] = $cliente_id;
+ $data['papel'] = $papel;
+ $data['papel_generico'] = $papel_generico;
+ $data['parametrosRotativa'] = $parametrosRotativa;
+ $data['paginas'] = $paginas;
+ $data['gramaje'] = $gramaje;
+
+ // Se recorren las máquinas y se calcula el coste de linea por cada una
+ foreach ($maquinas as $maquina) {
+
+ $data['maquina'] = $maquina;
+
+ $linea = PresupuestoService::getLineaPresupuestoRotativa($data);
+
+ if(empty($linea))
+ continue;
+
+ array_push($lineas, $linea);
+ }
+ }
+ return $lineas;
+ }
+
+
+ // Funcion que obtiene el coste para impresión en plana
+ // y devuelve un array con los datos de la lineas
+ // Parametros de entrada: $input_data es un array con los siguientes datos:
+ // - uso: 'interior', 'guardas', 'cubierta' o 'sobrecubierta'
+ // - tipo_impresion_id: id del tipo de impresion
+ // - datosPedido: un objeto que contiene los siguientes campos
+ // * paginas: numero total de páginas
+ // * tirada: numero de ejemplares a imprimir
+ // * merma: número de ejemplares extra a imprimir
+ // * ancho: ancho del libro
+ // * alto: alto del libro
+ // * a_favor_fibra: dirección de la impresión
+ // * isCosido: indica si el libro es cosido o no
+ // * solapas: (solo cubierta y sobrecubierta) indica si hay o no solapas
+ // * solapas_ancho: (solo cubierta y sobrecubierta) indica el ancho de las solapas
+ // * lomo: (solo cubierta y sobrecubierta) ancho del lomo del libro (o libro mas cubierta)
+ // - papel_generico: objeto que contiene el id y el nombre del papel generico
+ // - gramaje: gramaje del papel seleccionado
+ // - cliente_id: id del cliente al que va destinado el presupuesto
+ // - datosTipolog: datos referentes a las tintas (opcional)
+ // - a_favor_fibra: dirección de la impresión
+ public static function obtenerComparadorPlana($input_data){
+
+ $uso = $input_data['uso'];
+ $tipo_impresion_id = $input_data['tipo_impresion_id'];
+ $datosPedido = $input_data['datosPedido'];
+ $papel_generico = $input_data['papel_generico'];
+ $gramaje = $input_data['gramaje'];
+ $isColor = $input_data['isColor'];
+ $isHq = $input_data['isHq'];
+ $cliente_id = $input_data['cliente_id'];
+ $datosTipolog = $input_data['datosTipolog'] ?? null;
+ $a_favor_fibra = $datosPedido->a_favor_fibra ?? false;
+
+ $tipo = $isColor ? ($isHq ? 'colorhq' : 'color') : ($isHq ? 'negrohq' : 'negro');
+
+ if ($uso == 'cubierta' || $uso == 'sobrecubierta') {
+
+ $datosPedido->anchoExteriores = PresupuestoService::getAnchoTotalExteriores($uso, $tipo_impresion_id, $datosPedido);
+ $datosPedido->altoExteriores = PresupuestoService::getAltoTotalExteriores($uso, $tipo_impresion_id, $datosPedido);
+ }
+
+ $opciones_papel = PresupuestoService::get_opciones_papel($uso, $isColor);
+
+ // 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) {
+
+ $maquinamodel = new MaquinaModel();
+ $maquinas = $maquinamodel->getMaquinaImpresionForPresupuesto(
+ is_rotativa: 0,
+ tarifa_tipo: $tipo,
+ uso_tarifa: ($uso == 'guardas') ? 'interior' : $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['opciones_papel'] = $opciones_papel;
+ $data['maquina'] = $maquina;
+ $data['papel_generico'] = $papel_generico;
+ $data['isColor'] = $isColor;
+ $data['a_favor_fibra'] = $a_favor_fibra;
+ $data['datosTipolog'] = $datosTipolog;
+ $data['gramaje'] = $gramaje;
+
+ $linea = PresupuestoService::getLineaPresupuestoPlana($data);
+
+ if(empty($linea))
+ continue;
+
+ array_push($lineas, $linea);
+ }
+ }
+ return $lineas;
+ }
+
+
+ // Funcion que comprueba si existe una maquina
+ private static function checkMaquina($maquina_id){
+
+ $maquina = (new MaquinaModel())->find($maquina_id);
+ if (!$maquina) {
+ return false;
+ }
+ return true;
+ }
+
+
+ // Funcion que comprueba si existe un papel de impresion
+ private static function checkPapelImpresion($papel_impresion_id){
+
+ $papel = (new PapelImpresionModel())->find($papel_impresion_id);
+ if (!$papel) {
+ return false;
+ }
+ return true;
+ }
+
+
/**
* Devuelve la dimensión del lomo interior.
*/
diff --git a/ci4/app/Views/themes/_commonPartialsBs/_modalMessageDialog.php b/ci4/app/Views/themes/_commonPartialsBs/_modalMessageDialog.php
index 1594aa27..9ca180c9 100644
--- a/ci4/app/Views/themes/_commonPartialsBs/_modalMessageDialog.php
+++ b/ci4/app/Views/themes/_commonPartialsBs/_modalMessageDialog.php
@@ -27,7 +27,7 @@ function asyncMessageDialog(title, msg, callback) {
$("#labelMsgMessageDialog").html(msg);
$("#okButton").off('click').click(function () {
callback();
- $confirmDialog.modal("hide");
+ $messageDialog.modal("hide");
});
}
diff --git a/ci4/app/Views/themes/backend/vuexy/form/configuracion/maquinas/viewMaquinaForm.php b/ci4/app/Views/themes/backend/vuexy/form/configuracion/maquinas/viewMaquinaForm.php
index fa5f3943..ac15894f 100755
--- a/ci4/app/Views/themes/backend/vuexy/form/configuracion/maquinas/viewMaquinaForm.php
+++ b/ci4/app/Views/themes/backend/vuexy/form/configuracion/maquinas/viewMaquinaForm.php
@@ -51,6 +51,7 @@
= lang('MaquinasTarifasImpresions.tipo') ?> |
= lang('MaquinasTarifasImpresions.precio') ?> |
= lang('MaquinasTarifasImpresions.margen') ?> |
+ is_deleted |
= lang('Basic.global.Action') ?> |
@@ -489,6 +490,7 @@
},
{ 'data': 'precio' },
{ 'data': 'margen' },
+ { 'data': 'is_deleted',},
{
data: actionBtns,
className: 'row-edit dt-center'
@@ -496,6 +498,10 @@
],
columnDefs: [
+ {
+ target: 4,
+ visible: false
+ },
{
orderable: false,
searchable: false,
diff --git a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.js b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.js
index 50e9bfab..bbfef9bf 100644
--- a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.js
+++ b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.js
@@ -390,11 +390,11 @@ function get_datos_acabado(){
values['tarifa_id'] = $(this).text()
break
case 1:
- if($(this).text().includes(' '+ window.Presupuestos.cubierta))
+ if($(this).text().includes(window.Presupuestos.cubierta))
values['cubierta'] = 1
else
values['cubierta'] = 0
- if($(this).text().includes(' '+ window.Presupuestos.sobrecubierta))
+ if($(this).text().includes(window.Presupuestos.sobrecubierta))
values['sobrecubierta'] = 1
else
values['sobrecubierta'] = 0
@@ -527,6 +527,8 @@ function init_servicio_encuadernado(){
data: function (params) {
+ const dimension = getDimensionLibro();
+
if(parseInt($('#tirada').val())>0){
var tirada = parseInt($('#tirada').val())
}
@@ -538,8 +540,8 @@ function init_servicio_encuadernado(){
tarifa_id: tarifa_id,
paginas: parseInt($('#paginas').val())>0?parseInt($('#paginas').val()):0,
tirada: tirada,
- ancho: ancho_libro,
- alto: alto_libro,
+ ancho: dimension.ancho,
+ alto: dimension.alto,
searchtxt: params.term, // search term
};
return_data = Object.assign(return_data, window.token_ajax);
@@ -1509,4 +1511,24 @@ async function actualizar_servicios(update_preimpresion=false){
)
)
+}
+
+function popAlert(message, alertClass, alertIcon, containerId = 'sk-alert'){
+ var htmlString = `
+ `;
+ if(containerId == 'sk-alert'){
+ $(window).scrollTop(0);
+ }
+ $('#' + containerId).hide().empty().html(htmlString).fadeIn("slow", function(){
+ setTimeout(function(){
+ $('#' + containerId).fadeOut("slow");
+ }, 5000);
+ });
}
\ No newline at end of file
diff --git a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.php b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.php
index 22c58bdf..fb3c516c 100755
--- a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.php
+++ b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.php
@@ -245,7 +245,7 @@
window.routes_servicios = {
dataTableOfPresupuestoAcabados: "=route_to('dataTableOfPresupuestoAcabados') ?>",
- dataTableOfPresupuestoPreimpresion: "=route_to('dataTableOfPresupuestoPreimpresion') ?>",
+ dataTableOfPresupuestoPreimpresion: "=route_to('dataTableOfPresupuestoPreimpresiones') ?>",
dataTableOfPresupuestoEncuadernaciones: "=route_to('dataTableOfPresupuestoEncuadernaciones') ?>",
dataTableOfPresupuestoManipulados: "=route_to('dataTableOfPresupuestoManipulados') ?>",
menuItemsOfPresupuestoEncuadernaciones: '= route_to("menuItemsOfPresupuestoEncuadernaciones") ?>',
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 22ed5382..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()
}
@@ -4001,7 +4001,7 @@ async function calcularPresupuesto_sobrecubierta(fromComparador=false, input_dat
merma: parseInt($('#mermacubierta').val()),
ancho: dimension.ancho,
alto: dimension.alto,
- lomo: getLomoLineasPresupuesto() + getLomoCubiertaLineasPresupuesto,
+ lomo: getLomoLineasPresupuesto() + getLomoCubiertaLineasPresupuesto(),
papel_generico_id: input_data.papel_generico_id,
papel_generico: input_data.papel_generico,
gramaje: input_data.gramaje,
@@ -4137,6 +4137,7 @@ function getLomoLineasPresupuesto(){
catch(error){
lomoTotal = 0
}
+ $('#lomo_cubierta').val(lomoTotal)
return lomoTotal
}
@@ -4152,6 +4153,7 @@ function getLomoCubiertaLineasPresupuesto(){
catch(error){
lomoTotal = 0
}
+ $('#lomo_sobrecubierta').val(lomoTotal+parseFloat($('#lomo_cubierta').val()))
return lomoTotal
}
diff --git a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_resumenPresupuestos.js b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_resumenPresupuestos.js
index f69d757a..bb4473b4 100644
--- a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_resumenPresupuestos.js
+++ b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_resumenPresupuestos.js
@@ -59,19 +59,24 @@ function updateTotales(updateLP=true, updateServicios=true, updateEnvio=true){
var porcentajeMargenPapel = isNaN(margenPapel/(totalPapel)*100.0)?0:margenPapel/(totalPapel)*100.0
$('#porcentajeMargenPapel').text(porcentajeMargenPapel.toFixed(0) + '%')
- $('#totalCostePapel').text(totalPapel.toFixed(2)+ '€')
- $('#margenPapel').text(margenPapel.toFixed(2) + '€')
-
+ $('#totalCostePapel').text((addSeparatorsNF(totalPapel.toFixed(2), ".", ",", ".")) + "€")
+ $('#margenPapel').text((addSeparatorsNF(margenPapel.toFixed(2), ".", ",", ".")) + "€")
+ $('#totalCostePapel').attr('val',totalPapel.toFixed(2))
+ $('#margenPapel').attr('val',margenPapel.toFixed(2))
+
var porcentajeMargenImpresion = isNaN(margenImpresion/(totalImpresion)*100.0)?0:margenImpresion/(totalImpresion)*100.0
$('#porcentajeMargenImpresion').text(porcentajeMargenImpresion.toFixed(0) + '%')
- $('#totalCosteImpresion').text(totalImpresion.toFixed(2) + '€')
- $('#margenImpresion').text(margenImpresion.toFixed(2) + '€')
+ $('#totalCosteImpresion').text((addSeparatorsNF(totalImpresion.toFixed(2), ".", ",", ".")) + "€")
+ $('#margenImpresion').text((addSeparatorsNF(margenImpresion.toFixed(2), ".", ",", ".")) + "€")
+ $('#totalCosteImpresion').attr('val',totalImpresion.toFixed(2))
+ $('#margenImpresion').attr('val',margenImpresion.toFixed(2))
+
}
else{
- totalPapel = parseFloat($('#totalCostePapel').text().replace('€', ''))
- margenPapel = parseFloat($('#margenPapel').text().replace('€', ''))
- totalImpresion = parseFloat($('#totalCosteImpresion').text().replace('€', ''))
- margenImpresion = parseFloat($('#margenImpresion').text().replace('€', ''))
+ totalPapel = parseFloat($('#totalCostePapel').attr('val'))
+ margenPapel = parseFloat($('#margenPapel').attr('val'))
+ totalImpresion = parseFloat($('#totalCosteImpresion').attr('val'))
+ margenImpresion = parseFloat($('#margenImpresion').attr('val'))
}
sumForFactorPonderado = sumForFactor;
@@ -126,14 +131,16 @@ function updateTotales(updateLP=true, updateServicios=true, updateEnvio=true){
var porcentajeMargenServicios = margenServicios/(margenServicios+totalServicios)*100
$('#porcentajeMargenServicios').text(isNaN(porcentajeMargenServicios.toFixed(0))?0:porcentajeMargenServicios.toFixed(0) + '%')
- $('#totalServicios').text(totalServicios.toFixed(2) + '€')
- $('#margenServicios').text(margenServicios.toFixed(2) + '€')
+ $('#totalServicios').text((addSeparatorsNF(totalServicios.toFixed(2), ".", ",", ".")) + "€")
+ $('#margenServicios').text((addSeparatorsNF(margenServicios.toFixed(2), ".", ",", ".")) + "€")
+ $('#totalServicios').attr('val',totalServicios.toFixed(2) + '€')
+ $('#margenServicios').attr('val',margenServicios.toFixed(2) + '€')
}
else{
- totalServicios = parseFloat($('#totalServicios').text().replace('€', ''))
- margenServicios = parseFloat($('#margenServicios').text().replace('€', ''))
+ totalServicios = parseFloat($('#totalServicios').attr('val'))
+ margenServicios = parseFloat($('#margenServicios').attr('val'))
sumForFactorPonderado += totalServicios;
}
@@ -149,18 +156,22 @@ function updateTotales(updateLP=true, updateServicios=true, updateEnvio=true){
}
totalEnvios -= margenEnvios
- $('#totalEnvios').text(totalEnvios.toFixed(2) + '€')
- $('#margenEnvios').text(margenEnvios.toFixed(2) + '€')
+ $('#totalEnvios').text((addSeparatorsNF(totalEnvios.toFixed(2), ".", ",", ".")) + "€")
+ $('#margenEnvios').text((addSeparatorsNF(margenEnvios.toFixed(2), ".", ",", ".")) + "€")
+ $('#totalEnvios').attr('val',totalEnvios.toFixed(2) + '€')
+ $('#margenEnvios').attr('val',margenEnvios.toFixed(2) + '€')
}
else{
- totalEnvios = parseFloat($('#totalEnvios').text().replace('€', ''))
- margenEnvios = parseFloat($('#margenEnvios').text().replace('€', ''))
+ totalEnvios = parseFloat($('#totalEnvios').attr('val'))
+ margenEnvios = parseFloat($('#margenEnvios').attr('val'))
}
var totalCostes = totalPapel + totalImpresion + totalServicios + totalEnvios
var totalMargenes = margenPapel + margenImpresion + margenServicios + margenEnvios
- $('#totalCostes').text((totalCostes).toFixed(2) + '€')
- $('#totalMargenes').text((totalMargenes).toFixed(2) + '€')
+ $('#totalCostes').text((addSeparatorsNF(totalCostes.toFixed(2), ".", ",", ".")) + "€")
+ $('#totalMargenes').text((addSeparatorsNF(totalMargenes.toFixed(2), ".", ",", ".")) + "€")
+ $('#totalCostes').attr('val',(totalCostes).toFixed(2) + '€')
+ $('#totalMargenes').attr('val',(totalMargenes).toFixed(2) + '€')
if($('#total_descuentoPercent').val()<0){
$('#total_descuentoPercent').val(0)
@@ -170,40 +181,64 @@ function updateTotales(updateLP=true, updateServicios=true, updateEnvio=true){
var totalPresupuesto = totalAntesDescuento - totalDescuento
var precioUnidad = totalPresupuesto/parseInt($('#tirada').val())
- $('#totalAntesDescuento').text((totalAntesDescuento).toFixed(2) + '€')
- $('#descuentoTotal').text((totalDescuento).toFixed(2) + '€')
- $('#totalDespuesDecuento').text((totalPresupuesto).toFixed(2) + '€')
- $('#precioUnidadPresupuesto').text((precioUnidad).toFixed(2) + '€')
+ $('#totalAntesDescuento').text((addSeparatorsNF(totalAntesDescuento.toFixed(2), ".", ",", ".")) + "€")
+ $('#descuentoTotal').text((addSeparatorsNF(totalDescuento.toFixed(2), ".", ",", ".")) + "€")
+ $('#totalDespuesDecuento').text((addSeparatorsNF(totalPresupuesto.toFixed(2), ".", ",", ".")) + "€")
+ $('#precioUnidadPresupuesto').text((addSeparatorsNF(precioUnidad.toFixed(4), ".", ",", ".")) + "€")
+ $('#totalAntesDescuento').attr('val',(totalAntesDescuento).toFixed(2))
+ $('#descuentoTotal').attr('val',(totalDescuento).toFixed(2))
+ $('#totalDespuesDecuento').attr('val',(totalPresupuesto).toFixed(2))
+ $('#precioUnidadPresupuesto').attr('val',(precioUnidad).toFixed(4))
- $('#factor').text(((totalPresupuesto-totalEnvios-margenEnvios)/sumForFactor).toFixed(2))
- $('#factor_ponderado').text(((totalPresupuesto-totalEnvios-margenEnvios)/sumForFactorPonderado).toFixed(2))
+
+ $('#factor').text(addSeparatorsNF(((totalPresupuesto-totalEnvios-margenEnvios)/sumForFactor).toFixed(2), ".", ",", "."))
+ $('#factor').attr('val', ((totalPresupuesto-totalEnvios-margenEnvios)/sumForFactor).toFixed(2))
+ $('#factor_ponderado').text(addSeparatorsNF(((totalPresupuesto-totalEnvios-margenEnvios)/sumForFactorPonderado).toFixed(2), ".", ",", "."))
+ $('#factor_ponderado').attr('val',((totalPresupuesto-totalEnvios-margenEnvios)/sumForFactorPonderado).toFixed(2))
+}
+
+
+function addSeparatorsNF(nStr, inD, outD, sep)
+{
+ nStr += '';
+ var dpos = nStr.indexOf(inD);
+ var nStrEnd = '';
+ if (dpos != -1) {
+ nStrEnd = outD + nStr.substring(dpos + 1, nStr.length);
+ nStr = nStr.substring(0, dpos);
+ }
+ var rgx = /(\d+)(\d{3})/;
+ while (rgx.test(nStr)) {
+ nStr = nStr.replace(rgx, '$1' + sep + '$2');
+ }
+ return nStr + nStrEnd;
}
function getValuesResumenForm(){
var formResumen = ""
- formResumen += '&total_coste_papel=' + $('#totalCostePapel').text().replace('€', '')
- formResumen += '&total_margen_papel=' + $('#margenPapel').text().replace('€', '')
+ formResumen += '&total_coste_papel=' + $('#totalCostePapel').attr('val')
+ formResumen += '&total_margen_papel=' + $('#margenPapel').attr('val')
formResumen += '&total_margenPercent_papel=' + $('#porcentajeMargenPapel').text().replace('%', '')
- formResumen += '&total_coste_impresion=' + $('#totalCosteImpresion').text().replace('€', '')
- formResumen += '&total_margen_impresion=' + $('#margenImpresion').text().replace('€', '')
+ formResumen += '&total_coste_impresion=' + $('#totalCosteImpresion').attr('val')
+ formResumen += '&total_margen_impresion=' + $('#margenImpresion').attr('val')
formResumen += '&total_margenPercent_impresion=' + $('#porcentajeMargenImpresion').text().replace('%', '')
- formResumen += '&total_coste_servicios=' + $('#totalServicios').text().replace('€', '')
- formResumen += '&total_margen_servicios=' + $('#margenServicios').text().replace('€', '')
+ formResumen += '&total_coste_servicios=' + $('#totalServicios').attr('val')
+ formResumen += '&total_margen_servicios=' + $('#margenServicios').attr('val')
formResumen += '&total_margenPercent_servicios=' + $('#porcentajeMargenServicios').text().replace('%', '')
- formResumen += '&total_coste_envios=' + $('#totalEnvios').text().replace('€', '')
- formResumen += '&total_margen_envios=' + $('#margenEnvios').text().replace('€', '')
+ formResumen += '&total_coste_envios=' + $('#totalEnvios').attr('val')
+ formResumen += '&total_margen_envios=' + $('#margenEnvios').attr('val')
- formResumen += '&total_costes=' + $('#totalCostes').text().replace('€', '')
- formResumen += '&total_margenes=' + $('#totalMargenes').text().replace('€', '')
+ formResumen += '&total_costes=' + $('#totalCostes').attr('val')
+ formResumen += '&total_margenes=' + $('#totalMargenes').attr('val')
- formResumen += '&total_antes_descuento=' + $('#totalAntesDescuento').text().replace('€', '')
- formResumen += '&total_descuento=' + $('#descuentoTotal').text().replace('€', '')
+ formResumen += '&total_antes_descuento=' + $('#totalAntesDescuento').attr('val')
+ formResumen += '&total_descuento=' + $('#descuentoTotal').attr('val')
formResumen += '&total_descuentoPercent=' + $('#total_descuentoPercent').val()
- formResumen += '&total_presupuesto=' + $('#totalDespuesDecuento').text().replace('€', '')
- formResumen += '&total_precio_unidad=' + $('#precioUnidadPresupuesto').text().replace('€', '')
+ formResumen += '&total_presupuesto=' + $('#totalDespuesDecuento').attr('val')
+ formResumen += '&total_precio_unidad=' + $('#precioUnidadPresupuesto').attr('val')
formResumen += '&total_factor=' + $('#total_factor').text()
formResumen += '&total_factor_ponderado=' + $('#total_factor_ponderado').text()
diff --git a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_tiradasAlternativasItems.js b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_tiradasAlternativasItems.js
index 8cbaa4e5..1727ee66 100644
--- a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_tiradasAlternativasItems.js
+++ b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_tiradasAlternativasItems.js
@@ -157,7 +157,7 @@ async function add_tirada_alternativa(tirada_alt) {
coste_envio: coste_envio.toFixed(2),
margen: ((margen_total + margen_servicios + margen_envio)/(coste_total+coste_envio)*100.0).toFixed(2),
total_pedido: (coste_total + costes_servicios + coste_envio).toFixed(2),
- precio_unidad: ((coste_total + costes_servicios + coste_envio) / datos.tirada).toFixed(2),
+ precio_unidad: ((coste_total + costes_servicios + coste_envio) / datos.tirada).toFixed(4),
}).draw(false);
}
diff --git a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/viewCosidotapablandaForm.php b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/viewCosidotapablandaForm.php
index 5970f92a..e5a4c17c 100755
--- a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/viewCosidotapablandaForm.php
+++ b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/viewCosidotapablandaForm.php
@@ -17,6 +17,10 @@
value="= $presupuestoEntity->id ?>">
+
+
', '= lang("Presupuestos.duplicarConTipologias") ?>', function() {
$.ajax({
type: 'post',
@@ -291,9 +302,36 @@
+
+ = $this->section("additionalInlineJs") ?>
+ if(is_duplicado?'true':'false'; ?>){
+ asyncMessageDialog(
+ '= lang("Basic.global.Warning") ?>',
+ '= lang("Presupuestos.presupuestoDuplicadoActualizacion") ?>',
+ function(){});
+ }
+ else if(cambios_lineas? 'true':'false'); ?> ||
+ cambios_servicios? 'true':'false'); ?> ||
+ cambios_envios ? 'true':'false'); ?>){
+
+ let text = '= lang("Presupuestos.actualizacionPrecios") ?>';
+ if(cambios_lineas ? 'true':'false'); ?>){
+ text += '= lang("Presupuestos.actualizacionPreciosLP") ?>';
+ }
+ else if (cambios_servicios ? 'true':'false'); ?>){
+ text += '= lang("Presupuestos.actualizacionPreciosServicios") ?>';
+ }
+ else if (cambios_envios ? 'true':'false'); ?>){
+ text += '= lang("Presupuestos.actualizacionPreciosEnvios") ?>';
+ }
+ asyncMessageDialog(
+ '= lang("Basic.global.Warning") ?>',
+ text,
+ function(){});
-
-
+ }
+ = $this->endSection() ?>
+
diff --git a/xdebug.log b/xdebug.log
new file mode 100644
index 00000000..c0ca1760
--- /dev/null
+++ b/xdebug.log
@@ -0,0 +1,107527 @@
+[22] Log opened at 2024-03-19 18:14:24.100373
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 18:14:27.625179
+
+[22] Log opened at 2024-03-19 18:18:49.710020
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 18:18:50.423258
+
+[22] Log opened at 2024-03-19 18:18:50.699555
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 18:18:50.842937
+
+[23] Log opened at 2024-03-19 18:18:51.498163
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-03-19 18:18:51.536161
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [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.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 18:18:51.815633
+
+[22] Log closed at 2024-03-19 18:18:51.833578
+
+[24] Log opened at 2024-03-19 18:18:51.950101
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] Log opened at 2024-03-19 18:18:51.969376
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log opened at 2024-03-19 18:18:51.981257
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 18:18:52.301444
+
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 18:18:52.403249
+
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 18:18:52.495064
+
+[28] Log opened at 2024-03-19 18:18:59.473354
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 18:18:59.854985
+
+[28] Log opened at 2024-03-19 18:18:59.884082
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 18:19:00.273705
+
+[28] Log opened at 2024-03-19 18:19:00.312869
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] Log opened at 2024-03-19 18:19:00.320844
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 18:19:00.661056
+
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-03-19 18:19:00.844019
+
+[30] Log opened at 2024-03-19 18:19:37.897629
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-03-19 18:19:38.619843
+
+[30] Log opened at 2024-03-19 18:19:38.930967
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-03-19 18:19:39.069228
+
+[31] Log opened at 2024-03-19 18:19:39.815207
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] Log opened at 2024-03-19 18:19:39.835560
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 18:19:40.130099
+
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-19 18:19:40.165214
+
+[31] Log opened at 2024-03-19 18:19:40.305329
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] Log opened at 2024-03-19 18:19:40.306506
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] Log opened at 2024-03-19 18:19:40.307571
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [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.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 18:19:40.649940
+
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 18:19:40.722311
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-19 18:19:40.829525
+
+[22] Log opened at 2024-03-19 18:19:45.947857
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 18:19:46.325918
+
+[22] Log opened at 2024-03-19 18:19:46.363546
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 18:19:46.795812
+
+[22] Log opened at 2024-03-19 18:19:46.834189
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] Log opened at 2024-03-19 18:19:46.841525
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 18:19:47.159950
+
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 18:19:47.265647
+
+[22] Log opened at 2024-03-19 18:21:04.099445
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 18:21:04.776938
+
+[23] Log opened at 2024-03-19 18:21:05.012296
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 18:21:05.148639
+
+[23] Log opened at 2024-03-19 18:21:05.719019
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-03-19 18:21:05.755434
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 18:21:06.015290
+
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 18:21:06.103904
+
+[23] Log opened at 2024-03-19 18:21:06.104348
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-03-19 18:21:06.137288
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-19 18:21:06.142742
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 18:21:06.455084
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 18:21:06.586968
+
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 18:21:06.667129
+
+[28] Log opened at 2024-03-19 18:21:14.978591
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 18:21:15.343866
+
+[28] Log opened at 2024-03-19 18:21:15.384740
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 18:21:15.796002
+
+[28] Log opened at 2024-03-19 18:21:15.830704
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] Log opened at 2024-03-19 18:21:15.844682
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 18:21:16.162304
+
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-03-19 18:21:16.278312
+
+[30] Log opened at 2024-03-19 18:24:38.268773
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-03-19 18:24:38.952113
+
+[30] Log opened at 2024-03-19 18:24:39.205088
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-03-19 18:24:39.347197
+
+[31] Log opened at 2024-03-19 18:24:40.340504
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log opened at 2024-03-19 18:24:40.369150
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-03-19 18:24:40.667825
+
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 18:24:40.698642
+
+[30] Log opened at 2024-03-19 18:24:40.709674
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log opened at 2024-03-19 18:24:40.887521
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] Log opened at 2024-03-19 18:24:40.909982
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-03-19 18:24:41.054235
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-19 18:24:41.241277
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-19 18:24:41.341885
+
+[33] Log opened at 2024-03-19 18:24:46.217618
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-19 18:24:46.888651
+
+[33] Log opened at 2024-03-19 18:24:47.140501
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-19 18:24:47.272962
+
+[24] Log opened at 2024-03-19 18:24:47.835832
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log opened at 2024-03-19 18:24:48.005507
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 18:24:48.215682
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-19 18:24:48.321088
+
+[33] Log opened at 2024-03-19 18:24:48.442595
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] Log opened at 2024-03-19 18:24:48.442936
+[22] Log opened at 2024-03-19 18:24:48.442904
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [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.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 18:24:48.775507
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-19 18:24:48.852039
+
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 18:24:48.961004
+
+[29] Log opened at 2024-03-19 18:24:55.752632
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-03-19 18:24:56.123198
+
+[29] Log opened at 2024-03-19 18:24:56.157272
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-03-19 18:24:56.546314
+
+[29] Log opened at 2024-03-19 18:24:56.578893
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] Log opened at 2024-03-19 18:24:56.591957
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-03-19 18:24:56.926786
+
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 18:24:57.036791
+
+[32] Log opened at 2024-03-19 18:26:04.680326
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-19 18:26:05.349337
+
+[32] Log opened at 2024-03-19 18:26:05.617133
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-19 18:26:05.762632
+
+[32] Log opened at 2024-03-19 18:26:06.530848
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-19 18:26:06.548486
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] Log closed at 2024-03-19 18:26:06.817415
+
+[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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 18:26:06.830207
+
+[28] Log opened at 2024-03-19 18:26:06.936464
+[24] Log opened at 2024-03-19 18:26:06.936579
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] Log opened at 2024-03-19 18:26:06.938637
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 18:26:07.308389
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-19 18:26:07.420806
+
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 18:26:07.493571
+
+[32] Log opened at 2024-03-19 18:26:11.521475
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-19 18:26:11.884990
+
+[24] Log opened at 2024-03-19 18:26:11.909626
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 18:26:12.293534
+
+[24] Log opened at 2024-03-19 18:26:12.344173
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] Log opened at 2024-03-19 18:26:12.354847
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 18:26:12.675073
+
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 18:26:12.798831
+
+[22] Log opened at 2024-03-19 18:26:36.636529
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 18:26:37.333641
+
+[33] Log opened at 2024-03-19 18:26:37.610886
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-19 18:26:37.750094
+
+[23] Log opened at 2024-03-19 18:26:38.493601
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log opened at 2024-03-19 18:26:38.530897
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] Log closed at 2024-03-19 18:26:38.825718
+
+[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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 18:26:38.833303
+
+[33] Log opened at 2024-03-19 18:26:39.018203
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[22] Log opened at 2024-03-19 18:26:39.018300
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] Log opened at 2024-03-19 18:26:39.020722
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-19 18:26:39.352874
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 18:26:39.456550
+
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-03-19 18:26:39.530134
+
+[31] Log opened at 2024-03-19 18:26:50.147987
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 18:26:50.530855
+
+[30] Log opened at 2024-03-19 18:26:50.583708
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-03-19 18:26:50.962705
+
+[30] Log opened at 2024-03-19 18:26:50.983999
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] Log opened at 2024-03-19 18:26:50.995536
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-03-19 18:26:51.321228
+
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 18:26:51.432541
+
+[22] Log opened at 2024-03-19 18:34:41.777449
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 18:34:45.233846
+
+[22] Log opened at 2024-03-19 19:03:42.100314
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:03:42.532090
+
+[24] Log opened at 2024-03-19 19:07:10.055714
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:07:10.736873
+
+[24] Log opened at 2024-03-19 19:07:10.984666
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:07:11.123661
+
+[25] Log opened at 2024-03-19 19:07:11.937713
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-03-19 19:07:12.102051
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:07:12.286758
+
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:07:12.413464
+
+[26] Log opened at 2024-03-19 19:07:12.561704
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] Log opened at 2024-03-19 19:07:12.570173
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log opened at 2024-03-19 19:07:12.601481
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:07:12.904841
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-19 19:07:12.991285
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:07:13.082862
+
+[22] Log opened at 2024-03-19 19:07:21.131430
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:07:21.528962
+
+[22] Log opened at 2024-03-19 19:07:21.564034
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:07:21.992001
+
+[22] Log opened at 2024-03-19 19:07:22.037561
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] Log opened at 2024-03-19 19:07:22.045156
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:07:22.400840
+
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:07:22.496194
+
+[28] Log opened at 2024-03-19 19:07:40.216654
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:07:40.604857
+
+[28] Log opened at 2024-03-19 19:07:40.630623
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:07:41.026119
+
+[28] Log opened at 2024-03-19 19:07:41.048015
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] Log opened at 2024-03-19 19:07:41.055428
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:07:41.382540
+
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-03-19 19:07:41.480869
+
+[30] Log opened at 2024-03-19 19:08:55.333516
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-03-19 19:08:55.734752
+
+[30] Log opened at 2024-03-19 19:08:55.761788
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-03-19 19:08:56.189639
+
+[30] Log opened at 2024-03-19 19:08:56.232029
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-19 19:08:56.243616
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-03-19 19:08:56.576494
+
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:08:56.669841
+
+[24] Log opened at 2024-03-19 19:11:27.557711
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:11:28.953799
+
+[24] Log opened at 2024-03-19 19:11:29.267551
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] Log opened at 2024-03-19 19:11:29.268541
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] Log opened at 2024-03-19 19:11:29.269231
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] Log opened at 2024-03-19 19:11:29.269578
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] Log opened at 2024-03-19 19:11:29.270234
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] Log opened at 2024-03-19 19:11:29.270660
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:11:29.655386
+
+[24] Log opened at 2024-03-19 19:11:29.657482
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [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.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] Log closed at 2024-03-19 19:11:29.723003
+
+[23] Log opened at 2024-03-19 19:11:29.725295
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [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.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:11:29.779412
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] Log opened at 2024-03-19 19:11:29.781496
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:11:29.834195
+
+[22] Log opened at 2024-03-19 19:11:29.835902
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:11:29.894699
+
+[28] Log opened at 2024-03-19 19:11:29.896933
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] Log closed at 2024-03-19 19:11:29.955540
+
+[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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] Log closed at 2024-03-19 19:11:30.014129
+
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] Log closed at 2024-03-19 19:11:30.037028
+
+[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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:11:30.066781
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:11:30.130220
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:11:30.195408
+
+[23] Log opened at 2024-03-19 19:11:30.808913
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-03-19 19:11:30.977047
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] Log opened at 2024-03-19 19:11:30.978914
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[27] Log opened at 2024-03-19 19:11:30.978847
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-19 19:11:31.045048
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:11:31.211064
+
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:11:31.339114
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:11:31.488806
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:11:31.575847
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-19 19:11:31.671080
+
+[25] Log opened at 2024-03-19 19:11:48.502033
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:11:49.889728
+
+[25] Log opened at 2024-03-19 19:11:50.140683
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] Log opened at 2024-03-19 19:11:50.146289
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[24] Log opened at 2024-03-19 19:11:50.146509
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[31] Log opened at 2024-03-19 19:11:50.146331
+[32] Log opened at 2024-03-19 19:11:50.146331
+[23] Log opened at 2024-03-19 19:11:50.146730
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:11:50.299687
+
+[25] Log opened at 2024-03-19 19:11:50.302557
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-19 19:11:50.525559
+
+[33] Log opened at 2024-03-19 19:11:50.528384
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-19 19:11:50.588965
+
+[32] Log opened at 2024-03-19 19:11:50.592202
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 19:11:50.725430
+
+[31] Log opened at 2024-03-19 19:11:50.728474
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [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.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] Log closed at 2024-03-19 19:11:50.799436
+
+[23] Log opened at 2024-03-19 19:11:50.801849
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:11:50.854996
+
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log closed at 2024-03-19 19:11:50.928460
+
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-19 19:11:50.988327
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-19 19:11:51.045019
+
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:11:51.137448
+
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 19:11:51.197215
+
+[23] Log opened at 2024-03-19 19:11:51.555054
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log opened at 2024-03-19 19:11:51.589653
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] Log opened at 2024-03-19 19:11:51.600111
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] Log opened at 2024-03-19 19:11:51.603982
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log opened at 2024-03-19 19:11:51.710295
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-19 19:11:52.023226
+
+[23] Log closed at 2024-03-19 19:11:52.029634
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-19 19:11:52.114306
+
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:11:52.226878
+
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 19:11:52.329687
+
+[28] Log opened at 2024-03-19 19:11:57.549207
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:11:58.874643
+
+[28] Log opened at 2024-03-19 19:11:59.105032
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] Log opened at 2024-03-19 19:11:59.111006
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[22] Log opened at 2024-03-19 19:11:59.110966
+[27] Log opened at 2024-03-19 19:11:59.110987
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-19 19:11:59.111995
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-03-19 19:11:59.112370
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:11:59.266601
+
+[28] Log opened at 2024-03-19 19:11:59.269732
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-19 19:11:59.448688
+
+[26] Log opened at 2024-03-19 19:11:59.450429
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:11:59.550197
+
+[27] Log opened at 2024-03-19 19:11:59.552396
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-19 19:11:59.614011
+
+[34] Log opened at 2024-03-19 19:11:59.616625
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:11:59.673759
+
+[22] Log opened at 2024-03-19 19:11:59.676076
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:11:59.742537
+
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] Log closed at 2024-03-19 19:11:59.805882
+
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-19 19:11:59.862514
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:11:59.925954
+
+[34] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-19 19:12:00.059364
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:12:00.124680
+
+[25] Log opened at 2024-03-19 19:12:00.483086
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-19 19:12:00.521158
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-03-19 19:12:00.528282
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] Log opened at 2024-03-19 19:12:00.529166
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-03-19 19:12:00.672631
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: 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: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-19 19:12:00.908993
+
+[25] Log closed at 2024-03-19 19:12:00.921512
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-19 19:12:01.010780
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:12:01.084855
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:12:01.174298
+
+[32] Log opened at 2024-03-19 19:12:12.713848
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-19 19:12:14.109334
+
+[32] Log opened at 2024-03-19 19:12:14.405048
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] Log opened at 2024-03-19 19:12:14.419747
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[25] Log opened at 2024-03-19 19:12:14.419917
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[31] Log opened at 2024-03-19 19:12:14.419422
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[24] Log opened at 2024-03-19 19:12:14.419457
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-03-19 19:12:14.419884
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-19 19:12:14.571056
+
+[32] Log opened at 2024-03-19 19:12:14.573933
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:12:14.743352
+
+[28] Log opened at 2024-03-19 19:12:14.745606
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 19:12:14.805079
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] Log opened at 2024-03-19 19:12:14.808559
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:12:14.873189
+
+[25] Log opened at 2024-03-19 19:12:14.875592
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] Log closed at 2024-03-19 19:12:15.009373
+
+[24] Log opened at 2024-03-19 19:12:15.011679
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-19 19:12:15.063786
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-19 19:12:15.128574
+
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:12:15.197628
+
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 19:12:15.262798
+
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:12:15.320617
+
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:12:15.384439
+
+[25] Log opened at 2024-03-19 19:12:15.726327
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log opened at 2024-03-19 19:12:15.829021
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log opened at 2024-03-19 19:12:15.880253
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[31] Log opened at 2024-03-19 19:12:15.880378
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-03-19 19:12:15.920517
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log closed at 2024-03-19 19:12:16.148033
+
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:12:16.208435
+
+[34] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-19 19:12:16.324848
+
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 19:12:16.410619
+
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:12:16.507359
+
+[22] Log opened at 2024-03-19 19:13:29.542279
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:13:30.911034
+
+[22] Log opened at 2024-03-19 19:13:31.201299
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] Log opened at 2024-03-19 19:13:31.206387
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[32] Log opened at 2024-03-19 19:13:31.206569
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-19 19:13:31.206866
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] Log opened at 2024-03-19 19:13:31.207125
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] Log opened at 2024-03-19 19:13:31.207533
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [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.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:13:31.342801
+
+[22] Log opened at 2024-03-19 19:13:31.345704
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:13:31.593607
+
+[23] Log opened at 2024-03-19 19:13:31.595452
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] Log closed at 2024-03-19 19:13:31.672258
+
+[32] Log opened at 2024-03-19 19:13:31.673896
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:13:31.746030
+
+[25] Log opened at 2024-03-19 19:13:31.748317
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-03-19 19:13:31.816970
+
+[35] Log opened at 2024-03-19 19:13:31.819984
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] Log closed at 2024-03-19 19:13:31.897793
+
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] Log closed at 2024-03-19 19:13:31.953974
+
+[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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:13:32.018713
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-19 19:13:32.092369
+
+[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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log closed at 2024-03-19 19:13:32.144035
+
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-03-19 19:13:32.223326
+
+[28] Log opened at 2024-03-19 19:13:32.499785
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log opened at 2024-03-19 19:13:32.560070
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-19 19:13:32.568066
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] Log opened at 2024-03-19 19:13:32.579134
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log opened at 2024-03-19 19:13:32.705242
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:13:32.884866
+
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:13:32.995502
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-19 19:13:33.085610
+
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:13:33.196541
+
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-03-19 19:13:33.288222
+
+[24] Log opened at 2024-03-19 19:14:14.091933
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:14:15.474596
+
+[24] Log opened at 2024-03-19 19:14:15.790560
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] Log opened at 2024-03-19 19:14:15.796018
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] Log opened at 2024-03-19 19:14:15.796581
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] Log opened at 2024-03-19 19:14:15.797160
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[36] Log opened at 2024-03-19 19:14:15.797013
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-19 19:14:15.797683
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:14:15.985309
+
+[24] Log opened at 2024-03-19 19:14:15.988798
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:14:16.144838
+
+[28] Log opened at 2024-03-19 19:14:16.146849
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:14:16.212038
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] Log opened at 2024-03-19 19:14:16.214220
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:14:16.271302
+
+[25] Log opened at 2024-03-19 19:14:16.273630
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:14:16.419599
+
+[27] Log opened at 2024-03-19 19:14:16.421500
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-03-19 19:14:16.483818
+
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] Log closed at 2024-03-19 19:14:16.560212
+
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:14:16.627589
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:14:16.688863
+
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:14:16.760603
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:14:16.844977
+
+[25] Log opened at 2024-03-19 19:14:17.221459
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] Log opened at 2024-03-19 19:14:17.244341
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] Log opened at 2024-03-19 19:14:17.273776
+[22] Log opened at 2024-03-19 19:14:17.273747
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log opened at 2024-03-19 19:14:17.443536
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:14:17.603932
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log closed at 2024-03-19 19:14:17.638350
+
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:14:17.695498
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:14:17.892930
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-03-19 19:14:17.993191
+
+[23] Log opened at 2024-03-19 19:14:33.783718
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:14:34.145594
+
+[23] Log opened at 2024-03-19 19:14:34.304695
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:14:34.483925
+
+[23] Log opened at 2024-03-19 19:14:34.655836
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:14:34.923216
+
+[31] Log opened at 2024-03-19 19:14:51.333728
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 19:14:52.741929
+
+[31] Log opened at 2024-03-19 19:14:53.077985
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log opened at 2024-03-19 19:14:53.127092
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-19 19:14:53.129541
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] Log opened at 2024-03-19 19:14:53.137183
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] Log opened at 2024-03-19 19:14:53.141642
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] Log opened at 2024-03-19 19:14:53.142881
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 19:14:53.221064
+
+[31] Log opened at 2024-03-19 19:14:53.223419
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:14:53.460652
+
+[25] Log opened at 2024-03-19 19:14:53.463809
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:14:53.560137
+
+[28] Log opened at 2024-03-19 19:14:53.562183
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] Log closed at 2024-03-19 19:14:53.620798
+
+[37] Log opened at 2024-03-19 19:14:53.623798
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:14:53.675674
+
+[24] Log opened at 2024-03-19 19:14:53.678179
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] Log closed at 2024-03-19 19:14:53.791995
+
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 19:14:53.845463
+
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:14:53.910661
+
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:14:53.981476
+
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] Log closed at 2024-03-19 19:14:54.027376
+
+[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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:14:54.055805
+
+[27] Log opened at 2024-03-19 19:14:54.395405
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-03-19 19:14:54.527857
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] Log opened at 2024-03-19 19:14:54.550390
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] Log opened at 2024-03-19 19:14:54.553517
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:14:54.722902
+
+[25] Log opened at 2024-03-19 19:14:54.725352
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:14:54.854526
+
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-03-19 19:14:54.955393
+
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-03-19 19:14:55.053845
+
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:14:55.134469
+
+[22] Log opened at 2024-03-19 19:15:27.670261
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:15:28.013139
+
+[22] Log opened at 2024-03-19 19:15:28.177009
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:15:28.325577
+
+[22] Log opened at 2024-03-19 19:15:28.384887
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:15:28.651135
+
+[22] Log opened at 2024-03-19 19:15:32.863112
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:15:33.215792
+
+[22] Log opened at 2024-03-19 19:15:33.342457
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:15:33.482498
+
+[22] Log opened at 2024-03-19 19:15:33.533880
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:15:33.855506
+
+[22] Log opened at 2024-03-19 19:16:26.724665
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:16:27.085282
+
+[22] Log opened at 2024-03-19 19:16:27.248031
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:16:27.392873
+
+[22] Log opened at 2024-03-19 19:16:27.447259
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:16:27.713594
+
+[23] Log opened at 2024-03-19 19:16:50.028143
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:16:50.404790
+
+[23] Log opened at 2024-03-19 19:16:50.528026
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:16:50.685611
+
+[23] Log opened at 2024-03-19 19:16:50.718112
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:16:50.997959
+
+[24] Log opened at 2024-03-19 19:17:12.465726
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:17:12.874830
+
+[24] Log opened at 2024-03-19 19:17:13.200667
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:17:13.515680
+
+[25] Log opened at 2024-03-19 19:17:22.237912
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:17:22.613725
+
+[25] Log opened at 2024-03-19 19:17:22.706463
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:17:22.835290
+
+[25] Log opened at 2024-03-19 19:17:22.867245
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:17:23.139324
+
+[25] Log opened at 2024-03-19 19:17:24.218214
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:17:24.518696
+
+[25] Log opened at 2024-03-19 19:17:24.594502
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:17:24.723219
+
+[25] Log opened at 2024-03-19 19:17:24.761806
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:17:25.005517
+
+[25] Log opened at 2024-03-19 19:17:25.650277
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:17:25.950661
+
+[25] Log opened at 2024-03-19 19:17:26.050171
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:17:26.197180
+
+[25] Log opened at 2024-03-19 19:17:26.237545
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:17:26.476954
+
+[26] Log opened at 2024-03-19 19:18:00.907402
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-19 19:18:01.309990
+
+[26] Log opened at 2024-03-19 19:18:01.534534
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-19 19:18:01.774126
+
+[27] Log opened at 2024-03-19 19:18:17.884373
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:18:18.267244
+
+[27] Log opened at 2024-03-19 19:18:18.298516
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:18:18.696818
+
+[27] Log opened at 2024-03-19 19:18:18.717642
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] Log opened at 2024-03-19 19:18:18.719365
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:18:19.024680
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:18:19.133776
+
+[23] Log opened at 2024-03-19 19:18:30.900510
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:18:31.247347
+
+[23] Log opened at 2024-03-19 19:18:31.383719
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:18:31.532308
+
+[23] Log opened at 2024-03-19 19:18:31.579928
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:18:31.827427
+
+[22] Log opened at 2024-03-19 19:26:03.167342
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:26:03.601244
+
+[22] Log opened at 2024-03-19 19:26:03.718919
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:26:03.853760
+
+[22] Log opened at 2024-03-19 19:26:04.054408
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log opened at 2024-03-19 19:26:04.164800
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:26:04.350472
+
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:26:04.502023
+
+[24] Log opened at 2024-03-19 19:27:53.124510
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:27:53.483118
+
+[24] Log opened at 2024-03-19 19:27:53.613404
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:27:53.758989
+
+[24] Log opened at 2024-03-19 19:27:53.849029
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:27:54.117926
+
+[24] Log opened at 2024-03-19 19:27:55.006991
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:27:55.354963
+
+[24] Log opened at 2024-03-19 19:27:55.479594
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:27:55.645632
+
+[24] Log opened at 2024-03-19 19:27:55.708931
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:27:55.958129
+
+[22] Log opened at 2024-03-19 19:29:36.084035
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:29:36.463141
+
+[22] Log opened at 2024-03-19 19:29:36.588827
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:29:36.749919
+
+[22] Log opened at 2024-03-19 19:29:36.805126
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:29:37.051735
+
+[23] Log opened at 2024-03-19 19:29:49.364903
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:29:49.722355
+
+[23] Log opened at 2024-03-19 19:29:49.833480
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:29:49.981414
+
+[23] Log opened at 2024-03-19 19:29:50.047223
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:29:50.297633
+
+[23] Log opened at 2024-03-19 19:29:50.910205
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:29:51.262176
+
+[23] Log opened at 2024-03-19 19:29:51.379162
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:29:51.546398
+
+[23] Log opened at 2024-03-19 19:29:51.618919
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:29:51.856159
+
+[23] Log opened at 2024-03-19 19:29:52.427570
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:29:52.780190
+
+[23] Log opened at 2024-03-19 19:29:52.879580
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:29:53.023211
+
+[23] Log opened at 2024-03-19 19:29:53.080683
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9001.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9001', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9001 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:29:53.334726
+
+[22] Log opened at 2024-03-19 19:30:30.216951
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:30:30.577794
+
+[22] Log opened at 2024-03-19 19:30:30.709553
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:30:30.852878
+
+[22] Log opened at 2024-03-19 19:30:30.907723
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:30:31.177074
+
+[23] Log opened at 2024-03-19 19:30:35.122680
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:30:35.438969
+
+[23] Log opened at 2024-03-19 19:30:35.463550
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:30:35.843119
+
+[23] Log opened at 2024-03-19 19:30:35.891314
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:30:36.045111
+
+[26] Log opened at 2024-03-19 19:30:36.437714
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-19 19:30:36.694742
+
+[31] Log opened at 2024-03-19 19:30:52.953376
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 19:30:53.312426
+
+[31] Log opened at 2024-03-19 19:30:53.449705
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 19:30:53.608571
+
+[31] Log opened at 2024-03-19 19:30:53.679275
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-19 19:30:53.912701
+
+[22] Log opened at 2024-03-19 19:31:39.714367
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:31:40.092901
+
+[22] Log opened at 2024-03-19 19:31:40.222702
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:31:40.371867
+
+[22] Log opened at 2024-03-19 19:31:40.432780
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:31:40.674176
+
+[21] Log opened at 2024-03-19 19:33:14.995576
+[21] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.21'
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] Log closed at 2024-03-19 19:33:15.356637
+
+[21] Log opened at 2024-03-19 19:33:15.500464
+[21] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.21'
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] Log closed at 2024-03-19 19:33:15.643671
+
+[21] Log opened at 2024-03-19 19:33:15.719631
+[21] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.21'
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] Log closed at 2024-03-19 19:33:15.984041
+
+[21] Log opened at 2024-03-19 19:33:16.834132
+[21] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.21'
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] Log closed at 2024-03-19 19:33:17.180804
+
+[21] Log opened at 2024-03-19 19:33:17.294505
+[21] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.21'
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] Log closed at 2024-03-19 19:33:17.443082
+
+[21] Log opened at 2024-03-19 19:33:17.507887
+[21] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.21'
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[21] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[21] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[21] Log closed at 2024-03-19 19:33:17.739031
+
+[22] Log opened at 2024-03-19 19:34:55.038083
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:34:55.546076
+
+[22] Log opened at 2024-03-19 19:34:55.658450
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:34:55.897793
+
+[22] Log opened at 2024-03-19 19:34:55.973395
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:34:56.240499
+
+[23] Log opened at 2024-03-19 19:35:14.973297
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:35:15.347503
+
+[23] Log opened at 2024-03-19 19:35:15.456400
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:35:15.593487
+
+[23] Log opened at 2024-03-19 19:35:15.640534
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:35:15.891821
+
+[22] Log opened at 2024-03-19 19:36:39.407091
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: sk-network://host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'sk-network://host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: sk-network://host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: sk-network://host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'sk-network://host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: sk-network://host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: sk-network://host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'sk-network://host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: sk-network://host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:36:39.681688
+
+[22] Log opened at 2024-03-19 19:36:39.759600
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: sk-network://host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'sk-network://host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: sk-network://host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: sk-network://host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'sk-network://host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: sk-network://host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: sk-network://host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'sk-network://host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: sk-network://host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:36:39.812101
+
+[22] Log opened at 2024-03-19 19:36:39.841531
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: sk-network://host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'sk-network://host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: sk-network://host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: sk-network://host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'sk-network://host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: sk-network://host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: sk-network://host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'sk-network://host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: sk-network://host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:36:40.009211
+
+[22] Log opened at 2024-03-19 19:36:58.570739
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003.
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', connect: Cannot assign requested address.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003.
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', connect: Cannot assign requested address.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003.
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', connect: Cannot assign requested address.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:36:58.863332
+
+[22] Log opened at 2024-03-19 19:36:58.988884
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003.
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', connect: Cannot assign requested address.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003.
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', connect: Cannot assign requested address.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003.
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', connect: Cannot assign requested address.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:36:59.041820
+
+[22] Log opened at 2024-03-19 19:36:59.106217
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003.
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', connect: Cannot assign requested address.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003.
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', connect: Cannot assign requested address.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003.
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'localhost:9003', connect: Cannot assign requested address.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:36:59.267857
+
+[22] Log opened at 2024-03-19 19:37:26.966229
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:37:27.361408
+
+[22] Log opened at 2024-03-19 19:37:27.461172
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:37:27.607842
+
+[22] Log opened at 2024-03-19 19:37:27.657058
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:37:27.913843
+
+[22] Log opened at 2024-03-19 19:37:28.566754
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:37:28.939918
+
+[22] Log opened at 2024-03-19 19:37:29.039322
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:37:29.185182
+
+[22] Log opened at 2024-03-19 19:37:29.251337
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:37:29.500235
+
+[22] Log opened at 2024-03-19 19:38:36.880719
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:38:37.237043
+
+[22] Log opened at 2024-03-19 19:38:37.349526
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:38:37.510665
+
+[22] Log opened at 2024-03-19 19:38:37.578094
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:38:37.818124
+
+[22] Log opened at 2024-03-19 19:38:39.196277
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:38:39.531997
+
+[22] Log opened at 2024-03-19 19:38:39.646507
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:38:39.785694
+
+[22] Log opened at 2024-03-19 19:38:39.853854
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:38:40.090139
+
+[22] Log opened at 2024-03-19 19:38:55.808676
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:38:56.169122
+
+[22] Log opened at 2024-03-19 19:38:56.313171
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:38:56.450463
+
+[22] Log opened at 2024-03-19 19:38:56.495653
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:38:56.739659
+
+[22] Log opened at 2024-03-19 19:43:20.940455
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:43:21.294952
+
+[22] Log opened at 2024-03-19 19:43:21.431262
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:43:21.584291
+
+[22] Log opened at 2024-03-19 19:43:21.658304
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:43:21.899032
+
+[23] Log opened at 2024-03-19 19:43:24.782392
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:43:25.142476
+
+[23] Log opened at 2024-03-19 19:43:25.246712
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:43:25.400134
+
+[23] Log opened at 2024-03-19 19:43:25.441486
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-03-19 19:43:25.544287
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:43:25.688048
+
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:43:25.859228
+
+[25] Log opened at 2024-03-19 19:43:38.816661
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:43:39.193436
+
+[25] Log opened at 2024-03-19 19:43:39.351517
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:43:39.507433
+
+[25] Log opened at 2024-03-19 19:43:39.584187
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:43:39.923837
+
+[25] Log opened at 2024-03-19 19:43:40.549713
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:43:40.931290
+
+[25] Log opened at 2024-03-19 19:43:41.069914
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:43:41.225449
+
+[25] Log opened at 2024-03-19 19:43:41.284366
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:43:41.514150
+
+[26] Log opened at 2024-03-19 19:43:57.053757
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-19 19:43:57.514505
+
+[27] Log opened at 2024-03-19 19:43:58.587311
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:43:58.749787
+
+[27] Log opened at 2024-03-19 19:43:58.753913
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[23] Log opened at 2024-03-19 19:43:58.754097
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[26] Log opened at 2024-03-19 19:43:58.754200
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-19 19:43:58.754427
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] Log opened at 2024-03-19 19:43:58.755074
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:43:59.117364
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] Log opened at 2024-03-19 19:43:59.124113
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [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.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-19 19:43:59.180453
+
+[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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] Log opened at 2024-03-19 19:43:59.242191
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log closed at 2024-03-19 19:43:59.259195
+
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [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.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] Log closed at 2024-03-19 19:43:59.318033
+
+[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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 19:43:59.348147
+
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:43:59.431067
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:43:59.726713
+
+[24] Log opened at 2024-03-19 19:43:59.847592
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[27] Log opened at 2024-03-19 19:43:59.847687
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] Log opened at 2024-03-19 19:43:59.847989
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[25] Log opened at 2024-03-19 19:43:59.848228
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-19 19:44:00.325164
+
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-19 19:44:00.470767
+
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:44:00.609774
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-19 19:44:00.722425
+
+[24] Log opened at 2024-03-19 19:44:03.405237
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:44:03.744026
+
+[24] Log opened at 2024-03-19 19:44:03.867787
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:44:04.008391
+
+[24] Log opened at 2024-03-19 19:44:04.077592
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-19 19:44:04.182186
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-19 19:44:04.313358
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-19 19:44:04.498922
+
+[22] Log opened at 2024-03-19 19:44:10.899660
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:44:11.268614
+
+[22] Log opened at 2024-03-19 19:44:11.402910
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:44:11.560623
+
+[22] Log opened at 2024-03-19 19:44:11.624425
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:44:11.861822
+
+[22] Log opened at 2024-03-19 19:44:12.456133
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:44:12.829705
+
+[22] Log opened at 2024-03-19 19:44:12.936169
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:44:13.097942
+
+[22] Log opened at 2024-03-19 19:44:13.154378
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:44:13.413797
+
+[22] Log opened at 2024-03-19 19:44:13.827423
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:44:14.183846
+
+[22] Log opened at 2024-03-19 19:44:14.320718
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:44:14.497115
+
+[22] Log opened at 2024-03-19 19:44:14.563815
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 19:44:14.818406
+
+[22] Log opened at 2024-03-19 21:09:39.048759
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 21:09:39.391224
+
+[22] Log opened at 2024-03-19 21:09:39.536536
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 21:09:39.690925
+
+[22] Log opened at 2024-03-19 21:09:39.730796
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 21:09:39.992479
+
+[22] Log opened at 2024-03-19 21:09:42.393910
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 21:09:42.727706
+
+[22] Log opened at 2024-03-19 21:09:42.845107
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 21:09:42.989715
+
+[22] Log opened at 2024-03-19 21:09:43.066320
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 21:09:43.308087
+
+[22] Log opened at 2024-03-19 21:09:44.534701
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 21:09:44.881692
+
+[22] Log opened at 2024-03-19 21:09:44.985762
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 21:09:45.141527
+
+[22] Log opened at 2024-03-19 21:09:45.210624
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 21:09:45.444293
+
+[22] Log opened at 2024-03-19 22:00:56.319569
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 22:00:56.900460
+
+[22] Log opened at 2024-03-19 22:00:57.054600
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 22:00:57.196462
+
+[22] Log opened at 2024-03-19 22:00:57.475521
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log opened at 2024-03-19 22:00:57.577034
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-19 22:00:57.748743
+
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: 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: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-19 22:00:57.949390
+
+[22] Log opened at 2024-03-19 22:15:26.248003
+[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 resolved_breakpoints -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 1309
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 968
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 969
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 970
+[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] <- run -i 12
+[22] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- stack_get -i 13
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- eval -i 14 -- cm91bmQoJG51ZXZhX2xpbmVhWydmaWVsZHMnXVsndG90YWxfaW1wcmVzaW9uJ10sMik=
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- eval -i 15 -- JGRhdGFbJ2RhdGEnXVskcGtleV0=
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- eval -i 16 -- JGRhdGV0aW1lLT5mb3JtYXQoJ1ktbS1kIEg6aTpzJyk=
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_names -i 17 -d 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_get -i 18 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- stop -i 19
+[22] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[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
+
+[22] Log opened at 2024-03-27 07:17:00.254415
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 07:17:00.323699
+
+[22] Log opened at 2024-03-27 07:17:00.581079
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 07:17:00.621210
+
+[42] Log opened at 2024-03-27 07:17:46.674538
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log opened at 2024-03-27 07:22:40.923341
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-27 07:22:44.031181
+
+[42] Log closed at 2024-03-27 07:23:52.673709
+
+[24] Log opened at 2024-03-27 07:24:06.561582
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 07:24:09.491780
+
+[25] Log opened at 2024-03-27 07:24:48.112290
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 07:24:50.836696
+
+[25] Log opened at 2024-03-27 07:24:50.882613
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 07:24:54.216946
+
+[25] Log opened at 2024-03-27 07:24:54.429663
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 07:24:55.707941
+
+[23] Log opened at 2024-03-27 07:24:56.056868
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-27 07:24:57.335669
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-27 07:24:58.003341
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 07:25:01.405648
+
+[26] Log opened at 2024-03-27 07:25:01.468138
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 07:25:06.080627
+
+[26] Log opened at 2024-03-27 07:25:06.287030
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 07:25:07.393836
+
+[26] Log opened at 2024-03-27 07:25:07.425970
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[357] Log opened at 2024-03-27 07:25:07.426406
+[355] Log opened at 2024-03-27 07:25:07.426834
+[354] Log opened at 2024-03-27 07:25:07.426720
+[356] Log opened at 2024-03-27 07:25:07.426931
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355'
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[355] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] Log opened at 2024-03-27 07:25:07.814891
+[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358'
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 07:25:08.969502
+
+[26] Log opened at 2024-03-27 07:25:09.020691
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 07:25:09.465944
+
+[356] Log opened at 2024-03-27 07:25:09.532876
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[355] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[355] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[355] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[355] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[355] Log closed at 2024-03-27 07:25:10.086584
+
+[355] Log opened at 2024-03-27 07:25:10.122278
+[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355'
+[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[355] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[355] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] Log closed at 2024-03-27 07:25:10.182722
+
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 07:25:10.570149
+
+[358] Log opened at 2024-03-27 07:25:10.628657
+[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358'
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 07:25:11.078281
+
+[354] Log opened at 2024-03-27 07:25:11.193820
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 07:25:13.779577
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 07:25:17.060224
+
+[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[355] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[355] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[355] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[355] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[355] Log closed at 2024-03-27 07:25:20.376773
+
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] Log closed at 2024-03-27 07:25:23.765010
+
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 07:25:27.530028
+
+[27] Log opened at 2024-03-27 07:26:39.572370
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- run -i 10
+[27] [Step Debug] ->
+
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- stack_get -i 11
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- context_names -i 12 -d 0
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- run -i 14
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-03-27 07:26:45.915119
+
+[27] Log opened at 2024-03-27 07:26:46.071266
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- run -i 10
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-03-27 07:26:47.133895
+
+[27] Log opened at 2024-03-27 07:26:47.218239
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- run -i 10
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-03-27 07:26:49.076779
+
+[24] Log opened at 2024-03-27 08:43:41.301300
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:44:05.068369
+
+[356] Log opened at 2024-03-27 08:44:05.337434
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log opened at 2024-03-27 08:44:05.921348
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-27 08:44:05.970674
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-03-27 08:44:05.997872
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log opened at 2024-03-27 08:44:06.011934
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-03-27 08:44:06.133413
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:44:06.538838
+
+[356] Log opened at 2024-03-27 08:44:06.566299
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:44:07.438487
+
+[24] Log opened at 2024-03-27 08:44:07.708418
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 08:44:08.527054
+
+[357] Log opened at 2024-03-27 08:44:08.542133
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 08:44:09.031446
+
+[26] Log opened at 2024-03-27 08:44:09.046565
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:44:09.558659
+
+[25] Log opened at 2024-03-27 08:44:09.668148
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 08:44:10.120293
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:44:10.685377
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:44:11.152979
+
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 08:44:11.734086
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 08:44:12.219452
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:44:12.726434
+
+[22] Log opened at 2024-03-27 08:44:12.799747
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log opened at 2024-03-27 08:44:12.925920
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log opened at 2024-03-27 08:44:12.958275
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log opened at 2024-03-27 08:44:13.155231
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 08:44:14.809779
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 08:44:14.959994
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:44:15.566349
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:44:16.322020
+
+[358] Log opened at 2024-03-27 08:44:36.358661
+[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358'
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] Log closed at 2024-03-27 08:44:44.674107
+
+[358] Log opened at 2024-03-27 08:44:44.807465
+[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358'
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] Log closed at 2024-03-27 08:44:45.942704
+
+[359] Log opened at 2024-03-27 08:44:46.251419
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-03-27 08:44:46.374795
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 08:44:47.499831
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:44:47.925918
+
+[22] Log opened at 2024-03-27 08:45:01.416984
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 08:45:09.807320
+
+[25] Log opened at 2024-03-27 08:45:09.960356
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:45:11.089406
+
+[25] Log opened at 2024-03-27 08:45:11.395271
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-03-27 08:45:11.643278
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log opened at 2024-03-27 08:45:11.663381
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log opened at 2024-03-27 08:45:11.691724
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:45:12.912036
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 08:45:13.128129
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:45:13.772375
+
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 08:45:14.752732
+
+[25] Log opened at 2024-03-27 08:45:17.339771
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log opened at 2024-03-27 08:45:20.281508
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:45:20.953674
+
+[25] Log opened at 2024-03-27 08:45:23.627709
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-27 08:45:23.797114
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:45:26.387647
+
+[25] Log opened at 2024-03-27 08:45:28.525025
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:45:31.344925
+
+[26] Log opened at 2024-03-27 08:47:35.242029
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 08:47:44.392162
+
+[26] Log opened at 2024-03-27 08:47:44.568388
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 08:47:45.871191
+
+[357] Log opened at 2024-03-27 08:47:46.157270
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] Log opened at 2024-03-27 08:47:46.387172
+[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358'
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log opened at 2024-03-27 08:47:46.403463
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-03-27 08:47:46.420315
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 08:47:47.556894
+
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] Log closed at 2024-03-27 08:47:47.815074
+
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 08:47:48.673600
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:47:49.615822
+
+[356] Log opened at 2024-03-27 08:47:56.173655
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:48:10.179300
+
+[356] Log opened at 2024-03-27 08:48:10.343863
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log opened at 2024-03-27 08:48:10.365939
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[25] Log opened at 2024-03-27 08:48:10.366825
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[22] Log opened at 2024-03-27 08:48:10.368096
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[357] Log opened at 2024-03-27 08:48:10.370476
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[26] Log opened at 2024-03-27 08:48:10.371603
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:48:10.846956
+
+[356] Log opened at 2024-03-27 08:48:10.867617
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 08:48:11.713591
+
+[26] Log opened at 2024-03-27 08:48:11.729287
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 08:48:12.254868
+
+[22] Log opened at 2024-03-27 08:48:12.269803
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 08:48:12.771497
+
+[357] Log opened at 2024-03-27 08:48:12.789697
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:48:13.897888
+
+[25] Log opened at 2024-03-27 08:48:13.912145
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-27 08:48:14.419207
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:48:14.756839
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 08:48:15.140890
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 08:48:15.603192
+
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 08:48:16.078227
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:48:16.651266
+
+[357] Log opened at 2024-03-27 08:48:16.704004
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-27 08:48:16.821109
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-03-27 08:48:16.847458
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log opened at 2024-03-27 08:48:16.987320
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 08:48:18.299130
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 08:48:18.397568
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 08:48:19.200610
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:48:20.033379
+
+[359] Log opened at 2024-03-27 08:52:09.329094
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 08:52:31.042313
+
+[359] Log opened at 2024-03-27 08:52:31.281241
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] Log opened at 2024-03-27 08:52:31.293138
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] Log opened at 2024-03-27 08:52:31.293576
+[27] Log opened at 2024-03-27 08:52:31.294278
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[360] Log opened at 2024-03-27 08:52:31.295205
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[356] Log opened at 2024-03-27 08:52:31.299805
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 08:52:31.905938
+
+[359] Log opened at 2024-03-27 08:52:31.922715
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:52:32.959371
+
+[356] Log opened at 2024-03-27 08:52:32.976539
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-27 08:52:33.513063
+
+[27] Log opened at 2024-03-27 08:52:33.528138
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:52:34.645315
+
+[24] Log opened at 2024-03-27 08:52:34.659078
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 08:52:35.156296
+
+[354] Log opened at 2024-03-27 08:52:35.172612
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 08:52:35.682421
+
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 08:52:36.082552
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:52:36.481407
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-27 08:52:36.996815
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:52:37.554193
+
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 08:52:38.033933
+
+[356] Log opened at 2024-03-27 08:52:38.115558
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log opened at 2024-03-27 08:52:38.251033
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log opened at 2024-03-27 08:52:38.283305
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-03-27 08:52:38.442938
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 08:52:39.955242
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:52:40.224394
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-27 08:52:40.673032
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:52:41.366996
+
+[25] Log opened at 2024-03-27 08:57:04.752427
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:57:19.034571
+
+[25] Log opened at 2024-03-27 08:57:19.242663
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log opened at 2024-03-27 08:57:19.254366
+[354] Log opened at 2024-03-27 08:57:19.254475
+[356] Log opened at 2024-03-27 08:57:19.254527
+[27] Log opened at 2024-03-27 08:57:19.254805
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[360] Log opened at 2024-03-27 08:57:19.255378
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:57:19.806641
+
+[25] Log opened at 2024-03-27 08:57:19.826134
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 08:57:20.628878
+
+[354] Log opened at 2024-03-27 08:57:20.644448
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 08:57:21.166520
+
+[359] Log opened at 2024-03-27 08:57:21.181672
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:57:21.663445
+
+[356] Log opened at 2024-03-27 08:57:21.678533
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 08:57:22.147501
+
+[360] Log opened at 2024-03-27 08:57:22.164449
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-27 08:57:22.648469
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:57:22.973198
+
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 08:57:23.357767
+
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 08:57:23.937236
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:57:24.565845
+
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 08:57:25.174243
+
+[27] Log opened at 2024-03-27 08:57:25.241689
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log opened at 2024-03-27 08:57:25.366247
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log opened at 2024-03-27 08:57:25.398450
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log opened at 2024-03-27 08:57:25.561578
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-27 08:57:26.891366
+
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 08:57:27.119690
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:57:27.934540
+
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 08:57:29.040024
+
+[26] Log opened at 2024-03-27 10:53:37.657270
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:53:50.152971
+
+[26] Log opened at 2024-03-27 10:53:50.453292
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[362] Log opened at 2024-03-27 10:53:50.454605
+[22] Log opened at 2024-03-27 10:53:50.454516
+[359] Log opened at 2024-03-27 10:53:50.455228
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-27 10:53:50.456598
+[361] Log opened at 2024-03-27 10:53:50.457926
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:53:52.168696
+
+[26] Log opened at 2024-03-27 10:53:52.183103
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:53:52.680390
+
+[361] Log opened at 2024-03-27 10:53:52.697969
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-03-27 10:53:53.170795
+
+[362] Log opened at 2024-03-27 10:53:53.188261
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 10:53:53.661126
+
+[25] Log opened at 2024-03-27 10:53:53.679930
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 10:53:54.133435
+
+[22] Log opened at 2024-03-27 10:53:54.144895
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 10:53:54.611421
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 10:53:54.835133
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:53:54.977828
+
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:53:55.590383
+
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-03-27 10:53:56.143589
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 10:53:56.623542
+
+[359] Log opened at 2024-03-27 10:53:56.680070
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log opened at 2024-03-27 10:53:56.795410
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-03-27 10:53:56.820156
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log opened at 2024-03-27 10:53:56.970534
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 10:53:58.253108
+
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:53:58.329323
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 10:53:59.270036
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 10:54:00.059225
+
+[354] Log opened at 2024-03-27 10:54:06.587825
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[363] Log opened at 2024-03-27 10:54:06.589192
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-03-27 10:54:07.819865
+
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 10:54:07.822137
+
+[360] Log opened at 2024-03-27 10:54:07.876184
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log opened at 2024-03-27 10:54:08.067024
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 10:54:10.219834
+
+[356] Log closed at 2024-03-27 10:54:10.222051
+
+[26] Log opened at 2024-03-27 10:54:10.801611
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:54:21.529388
+
+[26] Log opened at 2024-03-27 10:54:21.960264
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-27 10:54:21.968267
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[359] Log opened at 2024-03-27 10:54:21.970370
+[22] Log opened at 2024-03-27 10:54:21.970020
+[361] Log opened at 2024-03-27 10:54:21.970600
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log opened at 2024-03-27 10:54:21.973317
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:54:22.471069
+
+[26] Log opened at 2024-03-27 10:54:22.490916
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 10:54:23.273617
+
+[25] Log opened at 2024-03-27 10:54:23.290341
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-03-27 10:54:23.719919
+
+[363] Log opened at 2024-03-27 10:54:23.735240
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:54:24.011550
+
+[361] Log opened at 2024-03-27 10:54:24.026682
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 10:54:24.970639
+
+[22] Log opened at 2024-03-27 10:54:24.986014
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 10:54:25.451410
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:54:25.767125
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 10:54:26.146518
+
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-03-27 10:54:26.631457
+
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:54:27.102889
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 10:54:27.569575
+
+[363] Log opened at 2024-03-27 10:54:27.655280
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log opened at 2024-03-27 10:54:27.806098
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] Log opened at 2024-03-27 10:54:27.808599
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-03-27 10:54:27.960571
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 10:54:29.067240
+
+[363] Log closed at 2024-03-27 10:54:29.088104
+
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:54:29.691167
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 10:54:30.407267
+
+[360] Log opened at 2024-03-27 10:55:13.073105
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log opened at 2024-03-27 10:55:22.962050
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 10:55:23.870658
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 10:55:32.591636
+
+[356] Log opened at 2024-03-27 10:55:32.820220
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] Log opened at 2024-03-27 10:55:32.829400
+[359] Log opened at 2024-03-27 10:55:32.829293
+[26] Log opened at 2024-03-27 10:55:32.829441
+[362] Log opened at 2024-03-27 10:55:32.829546
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[364] Log opened at 2024-03-27 10:55:32.829931
+[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364'
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 10:55:33.327346
+
+[356] Log opened at 2024-03-27 10:55:33.346387
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 10:55:34.222668
+
+[359] Log opened at 2024-03-27 10:55:34.238374
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:55:34.564942
+
+[361] Log opened at 2024-03-27 10:55:34.581109
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-03-27 10:55:35.529174
+
+[362] Log opened at 2024-03-27 10:55:35.544030
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:55:35.869718
+
+[26] Log opened at 2024-03-27 10:55:35.884939
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 10:55:36.216488
+
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] Log closed at 2024-03-27 10:55:36.693020
+
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 10:55:37.074960
+
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:55:37.530635
+
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-03-27 10:55:37.994327
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:55:38.467337
+
+[26] Log opened at 2024-03-27 10:55:38.534600
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log opened at 2024-03-27 10:55:38.654626
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log opened at 2024-03-27 10:55:38.681457
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log opened at 2024-03-27 10:55:38.837180
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:55:40.134193
+
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 10:55:40.198206
+
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:55:40.896294
+
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-03-27 10:55:41.728801
+
+[22] Log opened at 2024-03-27 11:08:32.679624
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 996
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- step_into -i 10
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- stack_get -i 11
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 12
+[22] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- stack_get -i 13
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_names -i 14 -d 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 16 -n "$input_data[\"presupuesto\"]" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_names -i 17 -d 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 18 -n "$input_data['presupuesto']" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 20 -n "$input_data[\"presupuesto\"]" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 21 -n "$input_data['presupuesto']->attributes" -p 0 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- step_over -i 22
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- stack_get -i 23
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 24 -n "$input_data['presupuesto']" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 25 -n "$input_data['presupuesto']->attributes" -p 0 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_names -i 26 -d 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_get -i 27 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 28 -n "$input_data" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_remove -i 29 -d 220001
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 998
+[22] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_remove -i 31 -d 220006
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[22] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 33 -n "$papel_generico" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 34 -n "$datos" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 35 -n "$cliente_id" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 36 -n "$datosTipolog" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 37 -n "$linea" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_remove -i 38 -d 220007
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 39 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1049
+[22] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 40
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- stack_get -i 41
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 42 -n "$input_data['presupuesto']" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_names -i 43 -d 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_get -i 44 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 45
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- stack_get -i 46
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 47 -n "$input_data['presupuesto']" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_names -i 48 -d 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_get -i 49 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 50
+[365] Log opened at 2024-03-27 11:39:57.605461
+[365] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.365'
+[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[365] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1049
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[365] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_remove -i 51 -d 220007
+[22] [Step Debug] ->
+
+[22] Log closed at 2024-03-27 11:40:03.209525
+
+[365] [Step Debug] <- step_into -i 11
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- stack_get -i 12
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- property_get -i 13 -n "$input_data['presupuesto']" -d 0 -c 0
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- context_names -i 14 -d 0
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/httpdocs/index.php -n 3
+[365] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_remove -i 17 -d 3650007
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- run -i 18
+[365] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- stack_get -i 19
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- property_get -i 20 -n "$input_data['presupuesto']" -d 0 -c 0
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- context_names -i 21 -d 0
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- context_get -i 22 -d 0 -c 0
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- run -i 23
+[365] [Step Debug] ->
+
+[365] Log closed at 2024-03-27 11:40:21.899947
+
+[356] Log opened at 2024-03-27 11:40:49.107007
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1049
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- step_into -i 11
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- stack_get -i 12
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- property_get -i 13 -n "$input_data['presupuesto']" -d 0 -c 0
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- context_names -i 14 -d 0
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- run -i 16
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- stack_get -i 17
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- context_names -i 18 -d 0
+[356] [Step Debug] ->
+
+[364] Log opened at 2024-03-27 11:41:21.750527
+[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364'
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1049
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- step_into -i 11
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- stack_get -i 12
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- property_get -i 13 -n "$input_data['presupuesto']" -d 0 -c 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- context_names -i 14 -d 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[364] [Step Debug] ->
+
+[356] [Step Debug] <- stop -i 19
+[364] [Step Debug] <- stop -i 16
+[364] [Step Debug] ->
+
+[356] [Step Debug] ->
+
+[356] [Step Debug] ->
+
+[364] [Step Debug] ->
+
+[356] [Step Debug] ->
+
+[364] Log closed at 2024-03-27 11:41:23.848382
+
+[356] [Step Debug] ->
+
+[356] Log closed at 2024-03-27 11:41:23.990390
+
+[364] Log opened at 2024-03-27 11:41:28.128255
+[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364'
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1049
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- step_into -i 11
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- stack_get -i 12
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- property_get -i 13 -n "$input_data['presupuesto']" -d 0 -c 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- context_names -i 14 -d 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- run -i 16
+[364] [Step Debug] ->
+
+[364] [Step Debug] ->
+
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- stack_get -i 17
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- property_get -i 18 -n "$input_data['presupuesto']" -d 0 -c 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- context_names -i 19 -d 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- context_get -i 20 -d 0 -c 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- run -i 21
+[364] [Step Debug] ->
+
+[364] Log closed at 2024-03-27 11:41:41.304903
+
+[26] Log opened at 2024-03-27 11:42:30.451875
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1050
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[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] <- step_into -i 11
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stack_get -i 12
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- property_get -i 13 -n "$input_data['presupuesto']" -d 0 -c 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_names -i 14 -d 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 16
+[26] [Step Debug] ->
+
+[26] [Step Debug] ->
+
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stack_get -i 17
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- property_get -i 18 -n "$input_data['presupuesto']" -d 0 -c 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_names -i 19 -d 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_get -i 20 -d 0 -c 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 21
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stack_get -i 22
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- property_get -i 23 -n "$input_data['presupuesto']" -d 0 -c 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_names -i 24 -d 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_get -i 25 -d 0 -c 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 26
+[26] [Step Debug] ->
+
+[26] Log closed at 2024-03-27 11:42:47.629582
+
+[359] Log opened at 2024-03-27 11:42:53.153982
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1050
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1050
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- step_into -i 12
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- stack_get -i 13
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- property_get -i 14 -n "$input_data['presupuesto']" -d 0 -c 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- context_names -i 15 -d 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- context_get -i 16 -d 0 -c 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- run -i 17
+[359] [Step Debug] ->
+
+[359] [Step Debug] ->
+
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- stack_get -i 18
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- property_get -i 19 -n "$input_data['presupuesto']" -d 0 -c 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- context_names -i 20 -d 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- run -i 22
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- stack_get -i 23
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- context_names -i 24 -d 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- context_get -i 25 -d 0 -c 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- run -i 26
+[359] [Step Debug] ->
+
+[359] Log closed at 2024-03-27 11:43:17.286667
+
+[361] Log opened at 2024-03-27 11:43:37.375326
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1050
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1050
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- step_into -i 12
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- stack_get -i 13
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- property_get -i 14 -n "$input_data['presupuesto']" -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- context_names -i 15 -d 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- context_get -i 16 -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- run -i 17
+[361] [Step Debug] ->
+
+[361] [Step Debug] ->
+
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- stack_get -i 18
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- property_get -i 19 -n "$input_data['presupuesto']" -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- context_names -i 20 -d 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- run -i 22
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- stack_get -i 23
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- property_get -i 24 -n "$input_data['presupuesto']" -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- context_names -i 25 -d 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- context_get -i 26 -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- property_get -i 27 -n "$comp_data[0]" -p 0 -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- property_get -i 28 -n "$comp_data[0][\"fields\"]" -p 0 -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- run -i 29
+[361] [Step Debug] ->
+
+[361] Log closed at 2024-03-27 11:46:12.112306
+
+[361] Log opened at 2024-03-27 11:46:12.389818
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- step_into -i 11
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- stack_get -i 12
+[361] [Step Debug] ->
+
+[363] Log opened at 2024-03-27 11:46:12.852774
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[360] Log opened at 2024-03-27 11:46:12.854185
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[22] Log opened at 2024-03-27 11:46:12.854333
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] Log opened at 2024-03-27 11:46:12.859545
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[365] Log opened at 2024-03-27 11:46:12.879080
+[365] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.365'
+[22] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[22] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[360] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[363] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[360] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[360] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[363] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[362] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[360] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[365] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[365] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[363] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[362] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[365] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[365] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[362] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[365] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[362] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[365] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[363] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[363] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[363] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[362] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[363] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[365] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[360] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[362] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[363] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[22] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[365] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[360] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[363] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[365] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[360] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[363] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[363] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[365] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[365] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[22] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[362] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[365] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[365] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[363] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[22] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[365] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[22] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[365] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[22] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[365] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[363] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[22] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[363] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[365] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[363] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[22] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[361] [Step Debug] <- context_names -i 13 -d 0
+[365] [Step Debug] ->
+
+[361] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[362] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[363] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[363] [Step Debug] <- step_into -i 19
+[360] [Step Debug] <- step_into -i 19
+[22] [Step Debug] <- step_into -i 19
+[362] [Step Debug] <- step_into -i 19
+[365] [Step Debug] <- step_into -i 19
+[363] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[361] [Step Debug] <- context_get -i 14 -d 0 -c 0
+[361] [Step Debug] ->
+
+[362] [Step Debug] <- stack_get -i 20
+[362] [Step Debug] ->
+
+[363] [Step Debug] <- stack_get -i 20
+[363] [Step Debug] ->
+
+[365] [Step Debug] <- stack_get -i 20
+[365] [Step Debug] ->
+
+[22] [Step Debug] <- stack_get -i 20
+[22] [Step Debug] ->
+
+[360] [Step Debug] <- stack_get -i 20
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- context_names -i 21 -d 0
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- context_get -i 22 -d 0 -c 0
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- run -i 23
+[360] [Step Debug] ->
+
+[360] Log closed at 2024-03-27 11:46:20.687032
+
+[360] Log opened at 2024-03-27 11:46:20.702384
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- step_into -i 11
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- stack_get -i 12
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- context_names -i 13 -d 0
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- context_get -i 14 -d 0 -c 0
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- run -i 15
+[360] [Step Debug] ->
+
+[360] Log closed at 2024-03-27 11:46:26.565817
+
+[360] Log opened at 2024-03-27 11:46:26.585275
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- step_into -i 11
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- stack_get -i 12
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- context_names -i 13 -d 0
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- context_get -i 14 -d 0 -c 0
+[360] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_remove -i 15 -d 3610008
+[363] [Step Debug] <- breakpoint_remove -i 21 -d 3650009
+[362] [Step Debug] <- breakpoint_remove -i 21 -d 3650009
+[365] [Step Debug] <- breakpoint_remove -i 21 -d 3650009
+[22] [Step Debug] <- breakpoint_remove -i 21 -d 3650009
+[363] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[361] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_remove -i 15 -d 3600014
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[365] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[361] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[361] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[361] [Step Debug] <- stop -i 17
+[363] [Step Debug] <- stop -i 22
+[362] [Step Debug] <- stop -i 22
+[22] [Step Debug] <- stop -i 22
+[365] [Step Debug] <- stop -i 23
+[361] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[360] [Step Debug] <- stop -i 17
+[365] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[361] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[22] Log closed at 2024-03-27 11:46:46.024560
+
+[361] Log closed at 2024-03-27 11:46:46.024560
+
+[362] Log closed at 2024-03-27 11:46:46.025098
+
+[363] Log closed at 2024-03-27 11:46:46.025127
+
+[365] Log closed at 2024-03-27 11:46:46.025304
+
+[360] [Step Debug] ->
+
+[360] Log closed at 2024-03-27 11:46:46.027314
+
+[22] Log opened at 2024-03-27 11:46:46.051699
+[365] Log opened at 2024-03-27 11:46:46.051713
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[365] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.365'
+[361] Log opened at 2024-03-27 11:46:46.053768
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[365] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[365] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[365] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[365] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[365] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[365] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[365] Log closed at 2024-03-27 11:46:47.806669
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 11:46:48.572485
+
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 11:46:49.056482
+
+[22] Log opened at 2024-03-27 11:46:49.368707
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log opened at 2024-03-27 11:46:49.387755
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 11:46:50.919377
+
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 11:46:51.626515
+
+[364] Log opened at 2024-03-27 11:48:19.995350
+[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364'
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-27 11:48:20.845746
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] Log closed at 2024-03-27 11:48:22.900629
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:23.814115
+
+[364] Log opened at 2024-03-27 11:48:25.004068
+[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364'
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-27 11:48:25.033215
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] Log closed at 2024-03-27 11:48:26.834438
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:27.723566
+
+[364] Log opened at 2024-03-27 11:48:29.298322
+[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364'
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-27 11:48:30.415881
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log opened at 2024-03-27 11:48:30.482783
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] Log closed at 2024-03-27 11:48:31.381979
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:32.059159
+
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 11:48:33.048187
+
+[364] Log opened at 2024-03-27 11:48:35.096951
+[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364'
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-27 11:48:36.265659
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log opened at 2024-03-27 11:48:36.325954
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] Log closed at 2024-03-27 11:48:37.228052
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:38.032637
+
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 11:48:38.736946
+
+[26] Log opened at 2024-03-27 11:48:42.933522
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log opened at 2024-03-27 11:48:44.106620
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:45.186721
+
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-03-27 11:48:47.136770
+
+[26] Log opened at 2024-03-27 11:48:49.086228
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log opened at 2024-03-27 11:48:49.110803
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-03-27 11:48:50.830925
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:51.693782
+
+[26] Log opened at 2024-03-27 11:48:52.127443
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log opened at 2024-03-27 11:48:53.449140
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log opened at 2024-03-27 11:48:53.503718
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:54.308607
+
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-03-27 11:48:55.118354
+
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-03-27 11:48:56.147506
+
+[26] Log opened at 2024-03-27 11:48:56.662115
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log opened at 2024-03-27 11:48:58.173035
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log opened at 2024-03-27 11:48:58.211841
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:59.003463
+
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-03-27 11:48:59.723786
+
+[366] Log opened at 2024-03-27 11:49:00.236574
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-03-27 11:49:00.320715
+
+[26] Log opened at 2024-03-27 11:49:01.577620
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log opened at 2024-03-27 11:49:01.626067
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-03-27 11:49:02.238223
+
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-03-27 11:49:03.274739
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:49:03.958939
+
+[22] Log opened at 2024-03-31 16:17:26.048070
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-31 16:17:41.679376
+
+[23] Log opened at 2024-03-31 16:17:54.647830
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:17:56.929639
+
+[23] Log opened at 2024-03-31 16:17:56.970408
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:18:00.788359
+
+[27] Log opened at 2024-03-31 16:18:01.874960
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-31 16:18:12.862648
+
+[24] Log opened at 2024-03-31 16:18:13.324686
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-31 16:18:15.752017
+
+[31] Log opened at 2024-03-31 16:18:34.077954
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-31 16:18:36.950096
+
+[31] Log opened at 2024-03-31 16:18:36.974665
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-31 16:18:42.127561
+
+[34] Log opened at 2024-03-31 16:18:42.223545
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] Log opened at 2024-03-31 16:18:42.232762
+[33] Log opened at 2024-03-31 16:18:42.233049
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] Log opened at 2024-03-31 16:18:42.236769
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:18:43.054958
+
+[22] Log opened at 2024-03-31 16:18:43.071996
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-03-31 16:18:43.073219
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-31 16:18:43.226289
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-31 16:18:43.344599
+
+[31] Log opened at 2024-03-31 16:18:43.382739
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-31 16:18:43.840243
+
+[33] Log opened at 2024-03-31 16:18:43.857241
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:18:44.198035
+
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] Log opened at 2024-03-31 16:18:44.789273
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-31 16:18:44.982290
+
+[22] Log opened at 2024-03-31 16:18:44.992849
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:18:45.178999
+
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:18:45.410648
+
+[25] Log opened at 2024-03-31 16:18:45.425547
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-31 16:18:46.386402
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-31 16:18:47.740131
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:18:49.273128
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-31 16:18:50.914100
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:18:52.386256
+
+[23] Log opened at 2024-03-31 16:19:01.012853
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:19:04.332021
+
+[23] Log opened at 2024-03-31 16:19:04.419643
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:19:05.570595
+
+[31] Log opened at 2024-03-31 16:19:05.748359
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-03-31 16:19:05.859601
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-31 16:19:07.078204
+
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:19:07.474940
+
+[31] Log opened at 2024-03-31 16:19:10.187843
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-31 16:19:18.688105
+
+[31] Log opened at 2024-03-31 16:19:18.788230
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] Log opened at 2024-03-31 16:19:18.800252
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[25] Log opened at 2024-03-31 16:19:18.800606
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[36] Log opened at 2024-03-31 16:19:18.801831
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] Log opened at 2024-03-31 16:19:18.836607
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] Log opened at 2024-03-31 16:19:18.843960
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-31 16:19:19.629332
+
+[31] Log opened at 2024-03-31 16:19:19.639054
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-31 16:19:20.078849
+
+[33] Log opened at 2024-03-31 16:19:20.088522
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:19:20.508315
+
+[25] Log opened at 2024-03-31 16:19:20.517259
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-31 16:19:21.120862
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] Log opened at 2024-03-31 16:19:21.131690
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:19:21.531255
+
+[32] Log opened at 2024-03-31 16:19:21.538944
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-03-31 16:19:21.990945
+
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-31 16:19:22.373345
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-31 16:19:22.822060
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:19:23.259381
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-31 16:19:23.721289
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:19:24.136783
+
+[31] Log opened at 2024-03-31 16:19:24.176758
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] Log opened at 2024-03-31 16:19:24.237790
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] Log opened at 2024-03-31 16:19:24.243355
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] Log opened at 2024-03-31 16:19:24.278605
+[25] Log opened at 2024-03-31 16:19:24.278754
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-31 16:19:25.537317
+
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-03-31 16:19:25.675502
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-31 16:19:26.350759
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:19:26.938698
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:19:27.452784
+
+[24] Log opened at 2024-03-31 16:19:34.158798
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] Log opened at 2024-03-31 16:19:34.257652
+[31] Log opened at 2024-03-31 16:19:34.257746
+[23] Log opened at 2024-03-31 16:19:34.257719
+[34] Log opened at 2024-03-31 16:19:34.257643
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[35] Log opened at 2024-03-31 16:19:34.257735
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:19:35.624824
+
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:19:36.022762
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-31 16:19:36.492995
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-31 16:19:37.039817
+
+[23] Log opened at 2024-03-31 16:19:37.131512
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[24] Log opened at 2024-03-31 16:19:37.131927
+[22] Log opened at 2024-03-31 16:19:37.131960
+[34] Log opened at 2024-03-31 16:19:37.132167
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-31 16:19:37.588758
+
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-03-31 16:19:38.094500
+
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:19:38.536577
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-31 16:19:38.997128
+
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:19:39.472079
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-31 16:19:39.993537
+
+[24] Log opened at 2024-03-31 16:19:43.865254
+[22] Log opened at 2024-03-31 16:19:43.865263
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[34] Log opened at 2024-03-31 16:19:43.865863
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-31 16:19:45.090553
+
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:19:45.607207
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-31 16:19:46.170719
+
+[24] Log opened at 2024-03-31 16:19:46.246001
+[36] Log opened at 2024-03-31 16:19:46.246017
+[22] Log opened at 2024-03-31 16:19:46.245997
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[34] Log opened at 2024-03-31 16:19:46.246651
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-31 16:19:47.454142
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-31 16:19:47.905934
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-03-31 16:19:48.435414
+
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] Log opened at 2024-03-31 16:19:58.265787
+[25] Log opened at 2024-03-31 16:19:58.265801
+[24] Log opened at 2024-03-31 16:19:58.265794
+[33] Log opened at 2024-03-31 16:19:58.266141
+[32] Log opened at 2024-03-31 16:19:58.266027
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[31] Log opened at 2024-03-31 16:19:58.267067
+[37] Log opened at 2024-03-31 16:19:58.267144
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[23] Log opened at 2024-03-31 16:19:58.269301
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:19:58.458306
+
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-03-31 16:20:02.616317
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:20:03.068216
+
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-31 16:20:03.560665
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-31 16:20:04.018088
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:20:04.459414
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-31 16:20:04.925554
+
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-03-31 16:20:05.518335
+
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:20:08.969190
+
+[23] Log opened at 2024-03-31 16:20:09.072340
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-03-31 16:20:09.077141
+[25] Log opened at 2024-03-31 16:20:09.077073
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[41] Log opened at 2024-03-31 16:20:09.077318
+[36] Log opened at 2024-03-31 16:20:09.078853
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] Log opened at 2024-03-31 16:20:09.081500
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:20:09.930851
+
+[23] Log opened at 2024-03-31 16:20:09.937824
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-03-31 16:20:10.270804
+
+[36] Log opened at 2024-03-31 16:20:10.278007
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log closed at 2024-03-31 16:20:10.698122
+
+[25] Log opened at 2024-03-31 16:20:10.706637
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:20:11.107300
+
+[34] Log opened at 2024-03-31 16:20:11.115704
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-03-31 16:20:11.474861
+
+[35] Log opened at 2024-03-31 16:20:11.483295
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-03-31 16:20:14.792928
+
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:20:15.207983
+
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-03-31 16:20:15.563670
+
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:20:15.953460
+
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:20:16.339830
+
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-03-31 16:20:16.717977
+
+[35] Log opened at 2024-03-31 16:20:16.762468
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] Log opened at 2024-03-31 16:20:16.803985
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-31 16:20:16.809439
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] Log opened at 2024-03-31 16:20:16.841191
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[34] Log opened at 2024-03-31 16:20:16.841568
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:20:18.075522
+
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-03-31 16:20:18.092622
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-03-31 16:20:18.576891
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-03-31 16:20:19.027201
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:20:19.493227
+
+[24] Log opened at 2024-03-31 16:20:20.795890
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[31] Log opened at 2024-03-31 16:20:20.795991
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-31 16:20:21.928875
+
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-31 16:20:21.930371
+
+[31] Log opened at 2024-03-31 16:20:21.985588
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[24] Log opened at 2024-03-31 16:20:21.986198
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-31 16:20:23.229035
+
+[24] Log closed at 2024-03-31 16:20:23.229066
+
+[25] Log opened at 2024-03-31 16:20:24.351059
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:20:29.232256
+
+[25] Log opened at 2024-03-31 16:20:29.392660
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] Log opened at 2024-03-31 16:20:29.395694
+[23] Log opened at 2024-03-31 16:20:29.395764
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[34] Log opened at 2024-03-31 16:20:29.395867
+[42] Log opened at 2024-03-31 16:20:29.396077
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[32] Log opened at 2024-03-31 16:20:29.396331
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:20:30.223850
+
+[25] Log opened at 2024-03-31 16:20:30.231931
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-31 16:20:30.565630
+
+[33] Log opened at 2024-03-31 16:20:30.576244
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:20:30.969196
+
+[34] Log opened at 2024-03-31 16:20:30.979415
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:20:31.523088
+
+[23] Log opened at 2024-03-31 16:20:31.531410
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:20:31.885509
+
+[32] Log opened at 2024-03-31 16:20:31.896043
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-03-31 16:20:32.354939
+
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:20:32.742378
+
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-31 16:20:33.131353
+
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:20:33.565367
+
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:20:34.027960
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:20:34.476748
+
+[25] Log opened at 2024-03-31 16:20:34.528489
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-03-31 16:20:34.575049
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] Log opened at 2024-03-31 16:20:34.578788
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] Log opened at 2024-03-31 16:20:34.651571
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[23] Log opened at 2024-03-31 16:20:34.652489
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:20:43.543503
+
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:20:43.937983
+
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-31 16:20:44.316374
+
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:20:44.857615
+
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-03-31 16:20:45.523229
+
+[41] Log opened at 2024-03-31 16:20:54.775664
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] Log opened at 2024-03-31 16:20:54.793307
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[24] Log opened at 2024-03-31 16:20:54.794282
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[31] Log opened at 2024-03-31 16:20:54.794966
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] Log opened at 2024-03-31 16:20:54.811950
+[34] Log opened at 2024-03-31 16:20:54.811695
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-31 16:20:56.192515
+
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-03-31 16:20:56.693436
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-03-31 16:20:57.187488
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-03-31 16:20:57.776364
+
+[36] Log opened at 2024-03-31 16:20:57.901861
+[41] Log opened at 2024-03-31 16:20:57.901866
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[24] Log opened at 2024-03-31 16:20:57.902319
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:20:58.394624
+
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:20:58.930650
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-03-31 16:20:59.394977
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-03-31 16:20:59.867241
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-31 16:21:00.345111
+
+[24] Log opened at 2024-03-31 16:21:04.913931
+[25] Log opened at 2024-03-31 16:21:04.913970
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[33] Log opened at 2024-03-31 16:21:04.913864
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] Log opened at 2024-03-31 16:21:04.920763
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[23] Log opened at 2024-03-31 16:21:04.920497
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[43] Log opened at 2024-03-31 16:21:04.922934
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-31 16:21:06.214491
+
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:21:06.686071
+
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-03-31 16:21:07.215723
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-03-31 16:21:07.794733
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:21:08.338693
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-03-31 16:21:08.953115
+
+[24] Log opened at 2024-03-31 16:21:08.993465
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-31 16:21:10.622449
+
+[32] Log opened at 2024-03-31 16:21:23.179139
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:21:28.252664
+
+[34] Log opened at 2024-03-31 16:21:28.407366
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] Log opened at 2024-03-31 16:21:28.412971
+[36] Log opened at 2024-03-31 16:21:28.412976
+[41] Log opened at 2024-03-31 16:21:28.412958
+[32] Log opened at 2024-03-31 16:21:28.412971
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[23] Log opened at 2024-03-31 16:21:28.414055
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:21:29.261702
+
+[34] Log opened at 2024-03-31 16:21:29.271221
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-03-31 16:21:29.696449
+
+[41] Log opened at 2024-03-31 16:21:29.706404
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-03-31 16:21:30.134081
+
+[42] Log opened at 2024-03-31 16:21:30.145097
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:21:30.535495
+
+[23] Log opened at 2024-03-31 16:21:30.545516
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:21:31.152467
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] Log opened at 2024-03-31 16:21:31.163281
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-03-31 16:21:31.564944
+
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:21:31.970246
+
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-03-31 16:21:32.362512
+
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-03-31 16:21:32.833554
+
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:21:33.268512
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:21:33.691393
+
+[42] Log opened at 2024-03-31 16:21:33.741286
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] Log opened at 2024-03-31 16:21:33.801233
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] Log opened at 2024-03-31 16:21:33.825052
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-03-31 16:21:33.855611
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[36] Log opened at 2024-03-31 16:21:33.856723
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:21:35.223633
+
+[42] Log closed at 2024-03-31 16:21:35.229673
+
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:21:35.794175
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-03-31 16:21:36.342930
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-03-31 16:21:36.873499
+
+[25] Log opened at 2024-03-31 16:22:21.092299
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:22:25.288567
+
+[25] Log opened at 2024-03-31 16:22:25.419902
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] Log opened at 2024-03-31 16:22:25.424474
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[24] Log opened at 2024-03-31 16:22:25.424849
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] Log opened at 2024-03-31 16:22:25.428389
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] Log opened at 2024-03-31 16:22:25.435666
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] Log opened at 2024-03-31 16:22:25.450472
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:22:26.234026
+
+[25] Log opened at 2024-03-31 16:22:26.241703
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:22:26.609520
+
+[32] Log opened at 2024-03-31 16:22:26.618416
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-03-31 16:22:27.305888
+
+[43] Log opened at 2024-03-31 16:22:27.315266
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-31 16:22:27.790323
+
+[24] Log opened at 2024-03-31 16:22:27.800172
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-03-31 16:22:28.235477
+
+[44] Log opened at 2024-03-31 16:22:28.242156
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:22:28.625662
+
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:22:28.982083
+
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:22:29.381964
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-03-31 16:22:29.801829
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-31 16:22:30.209105
+
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-03-31 16:22:30.598738
+
+[23] Log opened at 2024-03-31 16:22:30.644505
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] Log opened at 2024-03-31 16:22:30.693065
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] Log opened at 2024-03-31 16:22:30.701379
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] Log opened at 2024-03-31 16:22:30.754946
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[24] Log opened at 2024-03-31 16:22:30.755777
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:22:31.996568
+
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-03-31 16:22:32.063470
+
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-03-31 16:22:32.590193
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-31 16:22:33.080108
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-03-31 16:22:33.547165
+
+[34] Log opened at 2024-03-31 16:23:39.837022
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:23:44.261288
+
+[34] Log opened at 2024-03-31 16:23:44.397427
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] Log opened at 2024-03-31 16:23:44.406130
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] Log opened at 2024-03-31 16:23:44.410130
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] Log opened at 2024-03-31 16:23:44.415702
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-31 16:23:44.428047
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[23] Log opened at 2024-03-31 16:23:44.428312
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-03-31 16:23:45.221601
+
+[34] Log opened at 2024-03-31 16:23:45.228776
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-03-31 16:23:45.695982
+
+[45] Log opened at 2024-03-31 16:23:45.703120
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-31 16:23:46.137266
+
+[23] Log opened at 2024-03-31 16:23:46.145776
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-03-31 16:23:46.802408
+
+[36] Log opened at 2024-03-31 16:23:46.809377
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-03-31 16:23:47.204413
+
+[41] Log opened at 2024-03-31 16:23:47.238807
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-31 16:23:47.601374
+
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054
+[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] <- run -i 9
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 10
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 16:23:47.828533
+
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054
+[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] <- run -i 9
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 10
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-03-31 16:23:47.984266
+
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054
+[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] <- run -i 9
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 10
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:23:48.222769
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054
+[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] <- run -i 9
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 10
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 16:23:48.430875
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054
+[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] <- run -i 9
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stop -i 10
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-03-31 16:23:48.630985
+
+[23] Log opened at 2024-03-31 16:23:48.824708
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] Log opened at 2024-03-31 16:23:48.828750
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[23] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[45] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054
+[23] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[45] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[45] [Step Debug] <- run -i 9
+[23] [Step Debug] <- run -i 9
+[25] Log opened at 2024-03-31 16:23:48.864056
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054
+[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] <- run -i 9
+[41] Log opened at 2024-03-31 16:23:48.923105
+[36] Log opened at 2024-03-31 16:23:48.923222
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[41] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[41] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[41] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054
+[36] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054
+[41] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[41] [Step Debug] <- run -i 9
+[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] <- run -i 9
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 10
+[23] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:23:49.642986
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stop -i 10
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-03-31 16:23:49.743023
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 10
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 16:23:50.053515
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 10
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-03-31 16:23:50.363913
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 10
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 16:23:50.680162
+
+[23] Log opened at 2024-03-31 16:23:51.264683
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054
+[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] <- run -i 9
+[23] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stack_get -i 10
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- eval -i 11 -- JHBhcGVsLT5hbmNobw==
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- eval -i 12 -- JHBhcGVsLT5hbHRv
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 13 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 14 -d 0 -c 0 -n "'gramaje"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 15 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 16 -d 0 -c 0 -n "'gramaje"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 17 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 18 -d 0 -c 0 -n "'paginas"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 19 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 20 -d 0 -c 0 -n "'negro"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 21 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 22 -d 0 -c 0 -n "'color"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 23 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 24 -d 0 -c 0 -n "$linea"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 25 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 26 -d 0 -c 0 -n "$linea->rotativa_cyan"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 27 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 28 -d 0 -c 0 -n "$linea->rotativa_cyan"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 29 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 30 -d 0 -c 0 -n "$linea->rotativa_magenta"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 31 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_get -i 32 -d 0 -c 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 33 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 34 -d 0 -c 0 -n "$linea->rotativa_amarillo"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 35 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 36 -d 0 -c 0 -n "$linea->rotativa_gota_negro"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 37 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 38 -d 0 -c 0 -n "$linea->rotativa_gota_color"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 39 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 40 -d 0 -c 0 -n "PresupuestoService::obtenerComparadorRotativa"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 41 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 42 -d 0 -c 0 -n "PresupuestoService::obtenerComparadorRotativa"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 43 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 44 -d 0 -c 0 -n "'total_impresion"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 45 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 46 -d 0 -c 0 -n "'total_impresion"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 47 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 48 -d 0 -c 0 -n "'fields"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 49 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 50 -d 0 -c 0 -n "'fields"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 51 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 52 -d 0 -c 0 -n "'fields"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 53 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 54 -d 0 -c 0 -n "'fields"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 55 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 56 -d 0 -c 0 -n "'fields"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 57 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 58 -d 0 -c 0 -n "campo"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 59 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 60 -d 0 -c 0 -n "campo"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 61 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 62 -d 0 -c 0 -n "campo"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 63 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 64 -d 0 -c 0 -n "el"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 65 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 66 -d 0 -c 0 -n "usando"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 67 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 68 -d 0 -c 0 -n "usando"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 69 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 70 -d 0 -c 0 -n "usando"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 71 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 72 -d 0 -c 0 -n "$comp_data"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 73 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 74 -d 0 -c 0 -n "ordena"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 75 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 76 -d 0 -c 0 -n "ordena"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 77 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 78 -d 0 -c 0 -n "se"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 79 -d 0 -c 0 -p 0 -n "$comp_data[0]"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 80 -d 0 -c 0 -p 0 -n "$comp_data[0][\"fields\"]"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 81 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 82 -d 0 -c 0 -n "$linea->rotativa_gota_color"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 83 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 84 -d 0 -c 0 -n "'total_impresion"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 85 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 86 -d 0 -c 0 -n "PresupuestoLineaModel"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 87 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 88 -d 0 -c 0 -n "$nueva_linea"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_remove -i 89 -d 230007
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_remove -i 90 -d 230008
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 91 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[23] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_get -i 92 -d 230010
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 93 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[23] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_get -i 94 -d 230011
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_remove -i 95 -d 230010
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_remove -i 96 -d 230011
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 97 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[23] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_get -i 98 -d 230012
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_remove -i 99 -d 230012
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 100 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[23] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_get -i 101 -d 230013
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 102 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_remove -i 103 -d 230013
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 104 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[23] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_get -i 105 -d 230014
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_remove -i 106 -d 230014
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 107 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- property_get -i 108 -d 0 -c 0 -n "->updatePreciosLineasPresupuesto"
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 109 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[23] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_get -i 110 -d 230015
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- run -i 111
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 112
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:25:00.416638
+
+[23] Log opened at 2024-03-31 16:25:00.569539
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[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] <- run -i 8
+[44] Log opened at 2024-03-31 16:25:00.598414
+[32] Log opened at 2024-03-31 16:25:00.598621
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] Log opened at 2024-03-31 16:25:00.600502
+[43] Log opened at 2024-03-31 16:25:00.600745
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[46] Log opened at 2024-03-31 16:25:00.601784
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[32] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[44] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[32] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[43] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[32] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[32] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[46] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[44] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[32] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[32] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[43] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[46] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[32] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[44] [Step Debug] ->
+
+[32] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[46] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[24] [Step Debug] ->
+
+[32] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[32] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[44] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[43] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[24] [Step Debug] ->
+
+[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[46] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[46] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[46] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[44] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[32] [Step Debug] ->
+
+[24] [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 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[43] [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 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[44] [Step Debug] ->
+
+[32] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[32] [Step Debug] <- run -i 8
+[44] [Step Debug] <- run -i 8
+[24] [Step Debug] <- run -i 8
+[43] [Step Debug] <- run -i 8
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 8
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 9
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:25:00.925167
+
+[23] Log opened at 2024-03-31 16:25:00.935148
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[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] <- run -i 8
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- stop -i 9
+[43] [Step Debug] ->
+
+[43] Log closed at 2024-03-31 16:25:01.429697
+
+[43] Log opened at 2024-03-31 16:25:01.438689
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[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] <- run -i 8
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stop -i 9
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-03-31 16:25:01.899740
+
+[44] Log opened at 2024-03-31 16:25:01.909986
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[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] <- run -i 8
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- stop -i 9
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-03-31 16:25:02.138334
+
+[24] Log opened at 2024-03-31 16:25:02.146651
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[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] <- run -i 8
+[32] [Step Debug] ->
+
+[32] [Step Debug] <- stop -i 9
+[32] [Step Debug] ->
+
+[32] Log closed at 2024-03-31 16:25:02.373324
+
+[32] Log opened at 2024-03-31 16:25:02.381713
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ->
+
+[32] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[32] [Step Debug] ->
+
+[32] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[32] [Step Debug] ->
+
+[32] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[32] [Step Debug] ->
+
+[32] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[32] [Step Debug] ->
+
+[32] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[32] [Step Debug] ->
+
+[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[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] <- run -i 8
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stop -i 9
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-03-31 16:25:02.606919
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 9
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:25:02.754154
+
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- stop -i 9
+[43] [Step Debug] ->
+
+[43] Log closed at 2024-03-31 16:25:02.932528
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stop -i 9
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-03-31 16:25:03.157871
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- stop -i 9
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-03-31 16:25:03.346532
+
+[32] [Step Debug] ->
+
+[32] [Step Debug] <- stop -i 9
+[32] [Step Debug] ->
+
+[32] Log closed at 2024-03-31 16:25:03.528284
+
+[23] Log opened at 2024-03-31 16:25:03.612175
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[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] <- run -i 8
+[46] Log opened at 2024-03-31 16:25:03.727724
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[46] [Step Debug] ->
+
+[43] Log opened at 2024-03-31 16:25:03.740460
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[46] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[46] [Step Debug] ->
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[43] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[43] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[43] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 8
+[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[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] <- run -i 8
+[44] Log opened at 2024-03-31 16:25:03.824802
+[24] Log opened at 2024-03-31 16:25:03.824721
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[44] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[44] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[44] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[24] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[24] [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 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[24] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 8
+[44] [Step Debug] <- run -i 8
+[44] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 9
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:25:04.478684
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stop -i 9
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-03-31 16:25:04.569308
+
+[43] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- stop -i 9
+[43] [Step Debug] ->
+
+[43] Log closed at 2024-03-31 16:25:04.917427
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stop -i 9
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-03-31 16:25:05.239072
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- stop -i 9
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-03-31 16:25:05.573771
+
+[23] Log opened at 2024-03-31 16:25:09.206304
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055
+[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] <- run -i 8
+[23] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stack_get -i 9
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- eval -i 10 -- JHBhcGVsLT5hbmNobw==
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- eval -i 11 -- JHBhcGVsLT5hbHRv
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_names -i 12 -d 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- run -i 14
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 15
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:25:20.032788
+
+[23] Log opened at 2024-03-31 16:25:20.168700
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[34] Log opened at 2024-03-31 16:25:20.176498
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] ->
+
+[45] Log opened at 2024-03-31 16:25:20.178923
+[41] Log opened at 2024-03-31 16:25:20.179056
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[36] Log opened at 2024-03-31 16:25:20.180306
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log opened at 2024-03-31 16:25:20.187448
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[34] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[25] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[25] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[23] [Step Debug] <- run -i 7
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[41] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[45] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 7
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [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 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[25] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[45] [Step Debug] <- run -i 7
+[41] [Step Debug] <- run -i 7
+[36] [Step Debug] <- run -i 7
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 7
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 8
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:25:20.446676
+
+[23] Log opened at 2024-03-31 16:25:20.458044
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- run -i 7
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 8
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 16:25:20.928946
+
+[25] Log opened at 2024-03-31 16:25:20.941688
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 7
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 8
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 16:25:21.264968
+
+[34] Log opened at 2024-03-31 16:25:21.275817
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[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] ->
+
+[34] [Step Debug] <- run -i 7
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 16:25:21.445490
+
+[36] Log opened at 2024-03-31 16:25:21.455202
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 7
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 8
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-03-31 16:25:21.580110
+
+[45] Log opened at 2024-03-31 16:25:21.590679
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[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] ->
+
+[45] [Step Debug] <- run -i 7
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stop -i 8
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-03-31 16:25:21.760436
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 8
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:25:21.926719
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 8
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 16:25:22.082123
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 8
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 16:25:22.264793
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 16:25:22.447615
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 8
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-03-31 16:25:22.654924
+
+[23] Log opened at 2024-03-31 16:25:22.695197
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- run -i 7
+[25] Log opened at 2024-03-31 16:25:22.746217
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] ->
+
+[36] Log opened at 2024-03-31 16:25:22.754960
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] ->
+
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 7
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 7
+[45] Log opened at 2024-03-31 16:25:22.813517
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[34] Log opened at 2024-03-31 16:25:22.814296
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 6 -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 22
+[45] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- run -i 7
+[34] [Step Debug] <- run -i 7
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 16:25:23.510970
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 8
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:25:23.531042
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 8
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-03-31 16:25:23.909410
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 8
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 16:25:24.192437
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 8
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 16:25:24.404418
+
+[23] Log opened at 2024-03-31 16:25:26.861017
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[25] Log opened at 2024-03-31 16:25:26.862682
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[23] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[23] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] ->
+
+[45] Log opened at 2024-03-31 16:25:26.879681
+[36] Log opened at 2024-03-31 16:25:26.879703
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[34] Log opened at 2024-03-31 16:25:26.880035
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 7
+[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] <- run -i 7
+[45] [Step Debug] ->
+
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[45] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[45] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] <- run -i 7
+[45] [Step Debug] <- run -i 7
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 7
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 8
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 16:25:27.520040
+
+[25] Log opened at 2024-03-31 16:25:27.594487
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[32] Log opened at 2024-03-31 16:25:27.595146
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[25] [Step Debug] ->
+
+[32] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[32] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[32] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] ->
+
+[32] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[32] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[32] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] ->
+
+[32] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[32] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] ->
+
+[32] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[32] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -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 22
+[25] [Step Debug] ->
+
+[32] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 7
+[32] [Step Debug] <- run -i 7
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 8
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-03-31 16:25:27.813345
+
+[45] Log opened at 2024-03-31 16:25:27.825176
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[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] ->
+
+[45] [Step Debug] <- run -i 7
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 8
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:25:28.140025
+
+[23] Log opened at 2024-03-31 16:25:28.216744
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- run -i 7
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 16:25:28.369091
+
+[36] Log opened at 2024-03-31 16:25:28.377794
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 7
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 8
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 16:25:28.539973
+
+[34] Log opened at 2024-03-31 16:25:28.548702
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[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] ->
+
+[34] [Step Debug] <- run -i 7
+[32] [Step Debug] ->
+
+[32] [Step Debug] <- stop -i 8
+[32] [Step Debug] ->
+
+[32] Log closed at 2024-03-31 16:25:28.767079
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 8
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 16:25:29.002126
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 8
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-03-31 16:25:29.180613
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 8
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:25:29.395675
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 16:25:29.613755
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 8
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 16:25:29.878050
+
+[41] Log opened at 2024-03-31 16:25:36.060502
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[24] Log opened at 2024-03-31 16:25:36.060518
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[43] Log opened at 2024-03-31 16:25:36.060726
+[46] Log opened at 2024-03-31 16:25:36.060727
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[32] Log opened at 2024-03-31 16:25:36.061648
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-31 16:25:36.066783
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[46] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[32] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[41] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[43] [Step Debug] ->
+
+[32] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[46] [Step Debug] ->
+
+[32] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[46] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[32] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[32] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[43] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[46] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[32] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[41] [Step Debug] ->
+
+[32] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[43] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[46] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[32] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[32] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[46] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 6 -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 22
+[32] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[32] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[25] [Step Debug] ->
+
+[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[43] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[24] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[32] [Step Debug] ->
+
+[43] [Step Debug] <- run -i 7
+[46] [Step Debug] <- run -i 7
+[41] [Step Debug] <- run -i 7
+[24] [Step Debug] <- run -i 7
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[32] [Step Debug] <- run -i 7
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 7
+[32] [Step Debug] ->
+
+[32] [Step Debug] <- stop -i 8
+[32] [Step Debug] ->
+
+[32] Log closed at 2024-03-31 16:25:36.701546
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- stop -i 8
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-03-31 16:25:36.908518
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stop -i 8
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-03-31 16:25:37.111516
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stop -i 8
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-03-31 16:25:37.412177
+
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- stop -i 8
+[43] [Step Debug] ->
+
+[43] Log closed at 2024-03-31 16:25:37.627740
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 8
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 16:25:37.891519
+
+[24] Log opened at 2024-03-31 16:25:38.354397
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 7
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- stop -i 8
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-03-31 16:25:39.306130
+
+[24] Log opened at 2024-03-31 16:25:41.333217
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 7
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- stop -i 8
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-03-31 16:25:44.706564
+
+[24] Log opened at 2024-03-31 16:25:44.750796
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 7
+[45] Log opened at 2024-03-31 16:25:44.803913
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[23] Log opened at 2024-03-31 16:25:44.804814
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-03-31 16:25:44.805786
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[36] Log opened at 2024-03-31 16:25:44.806179
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] Log opened at 2024-03-31 16:25:44.807316
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[47] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[45] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[47] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[45] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[47] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[45] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[47] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[23] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[34] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[47] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[45] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[45] [Step Debug] <- run -i 7
+[36] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[23] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 7
+[36] [Step Debug] <- run -i 7
+[23] [Step Debug] <- run -i 7
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 7
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- stop -i 8
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-03-31 16:25:45.041001
+
+[24] Log opened at 2024-03-31 16:25:45.052515
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 7
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 8
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:25:45.434916
+
+[23] Log opened at 2024-03-31 16:25:45.442367
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- run -i 7
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 8
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-03-31 16:25:45.976314
+
+[45] Log opened at 2024-03-31 16:25:45.984065
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[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] ->
+
+[45] [Step Debug] <- run -i 7
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 16:25:46.215430
+
+[36] Log opened at 2024-03-31 16:25:46.223394
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 7
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 8
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 16:25:46.432922
+
+[34] Log opened at 2024-03-31 16:25:46.441858
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[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] ->
+
+[34] [Step Debug] <- run -i 7
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 8
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-03-31 16:25:46.673915
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- stop -i 8
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-03-31 16:25:46.824972
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 8
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:25:46.980089
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 8
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-03-31 16:25:47.259419
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 16:25:47.532896
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 8
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 16:25:47.725475
+
+[47] Log opened at 2024-03-31 16:25:47.752557
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 7
+[23] Log opened at 2024-03-31 16:25:47.808985
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[34] Log opened at 2024-03-31 16:25:47.817747
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[23] [Step Debug] ->
+
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [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 22
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[23] [Step Debug] <- run -i 7
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[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] ->
+
+[34] [Step Debug] <- run -i 7
+[45] Log opened at 2024-03-31 16:25:47.865458
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[36] Log opened at 2024-03-31 16:25:47.865694
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[45] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[45] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[45] [Step Debug] ->
+
+[36] [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 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[45] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[45] [Step Debug] <- run -i 7
+[36] [Step Debug] <- run -i 7
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 16:25:48.683835
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 8
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-03-31 16:25:48.702020
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 8
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-03-31 16:25:48.967447
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 8
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 16:25:49.266936
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- stop -i 8
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-03-31 16:25:49.573094
+
+[46] Log opened at 2024-03-31 16:52:59.005513
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1112
+[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] <- run -i 8
+[46] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stop -i 9
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-03-31 16:53:00.747609
+
+[41] Log opened at 2024-03-31 16:53:00.860352
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1112
+[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] <- run -i 8
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stop -i 9
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-03-31 16:53:01.791038
+
+[43] Log opened at 2024-03-31 16:55:17.667431
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[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] <- run -i 8
+[43] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- stop -i 9
+[43] [Step Debug] ->
+
+[43] Log closed at 2024-03-31 16:55:19.172578
+
+[25] Log opened at 2024-03-31 16:55:56.867224
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1118
+[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] <- run -i 8
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stack_get -i 9
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 10 -- JHBhcGVsLT5hbmNobw==
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 11 -- JHBhcGVsLT5hbHRv
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_names -i 12 -d 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 14 -d 250010
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 16 -d 250012
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 17 -d 250012
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 19 -d 250013
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 21 -d 250014
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 22 -d 250013
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 23 -d 250014
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 25 -d 250015
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 28 -d 250016
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 29
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stack_get -i 31
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 32 -- JHBhcGVsLT5hbmNobw==
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 33 -- JHBhcGVsLT5hbHRv
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_names -i 34 -d 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_get -i 35 -d 0 -c 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- property_get -i 36 -d 0 -c 0 -p 0 -n "$comp_data[0]"
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- property_get -i 37 -d 0 -c 0 -p 0 -n "$comp_data[0][\"fields\"]"
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 38 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 39 -- JHBhcGVsLT5hbHRv
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_names -i 40 -d 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_get -i 41 -d 0 -c 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- property_get -i 42 -d 0 -c 0 -p 0 -n "$comp_data[0]"
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- property_get -i 43 -d 0 -c 0 -p 0 -n "$comp_data[0][\"fields\"]"
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 44 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 45 -- JHBhcGVsLT5hbHRv
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_names -i 46 -d 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_get -i 47 -d 0 -c 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- property_get -i 48 -d 0 -c 0 -p 0 -n "$comp_data[0]"
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- property_get -i 49 -d 0 -c 0 -p 0 -n "$comp_data[0][\"fields\"]"
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 50 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 51 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_names -i 52 -d 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_get -i 53 -d 0 -c 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- property_get -i 54 -d 0 -c 0 -p 0 -n "$comp_data[0]"
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- property_get -i 55 -d 0 -c 0 -p 0 -n "$comp_data[0][\"fields\"]"
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 56 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 57 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 58 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_names -i 59 -d 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_get -i 60 -d 0 -c 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- property_get -i 61 -d 0 -c 0 -p 0 -n "$comp_data[0]"
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- property_get -i 62 -d 0 -c 0 -p 0 -n "$comp_data[0][\"fields\"]"
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 63 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 64 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 65 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 66 -- JGxpbmVhLT50aXBv
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_names -i 67 -d 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_get -i 68 -d 0 -c 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- property_get -i 69 -d 0 -c 0 -p 0 -n "$comp_data[0]"
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- property_get -i 70 -d 0 -c 0 -p 0 -n "$comp_data[0][\"fields\"]"
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 71
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 72 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stack_get -i 73
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 74 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 75 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 76 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 77 -- JGxpbmVhLT50aXBv
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_names -i 78 -d 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_get -i 79 -d 0 -c 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 80 -d 250015
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 81 -d 250016
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 82 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 83 -d 250017
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 84 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 85 -d 250018
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 86 -d 250017
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 87 -d 250018
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 88 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 89 -d 250019
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 90 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 91 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 92 -d 250020
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 93 -d 250019
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 94 -d 250020
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 95 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 96 -d 250021
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 97 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 98 -d 250022
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 99 -d 250021
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 100 -d 250022
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 101 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 102 -d 250023
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 103 -d 250023
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 104 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 105 -d 250024
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 106 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 107 -d 250025
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 108 -d 250024
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_remove -i 109 -d 250025
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 110 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 111 -d 250026
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 112 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 113 -d 250027
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 114 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[25] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_get -i 115 -d 250028
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 116
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stack_get -i 117
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 118 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 119 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 120 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- eval -i 121 -- JGxpbmVhLT50aXBv
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_names -i 122 -d 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- context_get -i 123 -d 0 -c 0
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 124
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 125
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 16:57:57.352661
+
+[25] Log opened at 2024-03-31 16:57:57.443807
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[36] Log opened at 2024-03-31 16:57:57.464426
+[24] Log opened at 2024-03-31 16:57:57.464519
+[47] Log opened at 2024-03-31 16:57:57.464900
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-03-31 16:57:57.467053
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] Log opened at 2024-03-31 16:57:57.467167
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] ->
+
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[45] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[47] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[47] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[47] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[47] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[24] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[34] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] <- run -i 10
+[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[34] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[24] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[47] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[36] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[45] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[47] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[34] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 10
+[47] [Step Debug] <- run -i 10
+[45] [Step Debug] <- run -i 10
+[24] [Step Debug] <- run -i 10
+[36] [Step Debug] <- run -i 10
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 11
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 16:57:57.795690
+
+[25] Log opened at 2024-03-31 16:57:57.807539
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 10
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 11
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 16:57:58.244074
+
+[34] Log opened at 2024-03-31 16:57:58.253461
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 10
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- stop -i 11
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-03-31 16:57:58.695622
+
+[24] Log opened at 2024-03-31 16:57:58.703791
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[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] <- run -i 10
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 11
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-03-31 16:57:58.932879
+
+[47] Log opened at 2024-03-31 16:57:58.941662
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 10
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 11
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 16:57:59.185527
+
+[36] Log opened at 2024-03-31 16:57:59.195123
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 10
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 11
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-03-31 16:57:59.412503
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 11
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 16:57:59.615456
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 11
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 16:57:59.786071
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- stop -i 11
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-03-31 16:58:00.086114
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 11
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-03-31 16:58:00.271350
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 11
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 16:58:00.466807
+
+[34] Log opened at 2024-03-31 16:58:00.505695
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 10
+[45] Log opened at 2024-03-31 16:58:00.558533
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[47] Log opened at 2024-03-31 16:58:00.567021
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[45] [Step Debug] ->
+
+[47] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[47] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[47] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[47] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[47] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[47] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[47] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[45] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[47] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[45] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[47] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[45] [Step Debug] <- run -i 10
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 10
+[36] Log opened at 2024-03-31 16:58:00.621056
+[24] Log opened at 2024-03-31 16:58:00.621181
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[24] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[24] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[24] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[24] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[36] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 10
+[24] [Step Debug] <- run -i 10
+[36] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 11
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 16:58:01.324033
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 11
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 16:58:01.357562
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- stop -i 11
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-03-31 16:58:01.671009
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 11
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-03-31 16:58:01.988015
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 11
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-03-31 16:58:02.304878
+
+[46] Log opened at 2024-03-31 17:00:27.099178
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 10
+[46] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stack_get -i 11
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- eval -i 12 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- eval -i 13 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- eval -i 14 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- eval -i 15 -- JGxpbmVhLT50aXBv
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- context_names -i 16 -d 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[46] [Step Debug] ->
+
+[41] Log opened at 2024-03-31 17:00:37.688595
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- run -i 10
+[41] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stack_get -i 11
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 12 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 13 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 14 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 15 -- JGxpbmVhLT50aXBv
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- context_names -i 16 -d 0
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- run -i 18
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stack_get -i 19
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 20 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 21 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 22 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 23 -- JGxpbmVhLT50aXBv
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- context_names -i 24 -d 0
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- context_get -i 25 -d 0 -c 0
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- run -i 26
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stack_get -i 27
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 28 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 29 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 30 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 31 -- JGxpbmVhLT50aXBv
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- context_names -i 32 -d 0
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- context_get -i 33 -d 0 -c 0
+[41] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_remove -i 18 -d 460008
+[41] [Step Debug] <- breakpoint_remove -i 34 -d 410011
+[46] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_remove -i 35 -d 410012
+[46] [Step Debug] <- breakpoint_remove -i 19 -d 460009
+[46] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_remove -i 36 -d 410013
+[46] [Step Debug] <- breakpoint_remove -i 20 -d 460010
+[41] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 37 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[46] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117
+[46] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_get -i 22 -d 460012
+[46] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_get -i 38 -d 410015
+[41] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[41] [Step Debug] <- breakpoint_set -i 39 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[46] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_get -i 24 -d 460013
+[41] [Step Debug] <- breakpoint_get -i 40 -d 410016
+[46] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_remove -i 25 -d 460012
+[41] [Step Debug] <- breakpoint_remove -i 41 -d 410015
+[46] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_remove -i 26 -d 460013
+[41] [Step Debug] <- breakpoint_remove -i 42 -d 410016
+[46] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 43 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[46] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120
+[41] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_get -i 44 -d 410017
+[41] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_get -i 28 -d 460014
+[46] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_remove -i 45 -d 410017
+[46] [Step Debug] <- breakpoint_remove -i 29 -d 460014
+[41] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[41] [Step Debug] <- run -i 46
+[46] [Step Debug] <- eval -i 30 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- eval -i 31 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- eval -i 32 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- eval -i 33 -- JGxpbmVhLT50aXBv
+[46] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stop -i 47
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-03-31 17:01:09.144675
+
+[41] Log opened at 2024-03-31 17:01:09.227864
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- run -i 7
+[43] Log opened at 2024-03-31 17:01:09.253675
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[25] Log opened at 2024-03-31 17:01:09.255879
+[48] Log opened at 2024-03-31 17:01:09.255712
+[36] Log opened at 2024-03-31 17:01:09.255856
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-03-31 17:01:09.257036
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ->
+
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[43] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[48] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[43] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[48] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[48] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[34] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -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 22
+[48] [Step Debug] <- breakpoint_set -i 6 -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 22
+[43] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[43] [Step Debug] <- run -i 7
+[48] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 7
+[48] [Step Debug] <- run -i 7
+[34] [Step Debug] <- run -i 7
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 7
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stop -i 8
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-03-31 17:01:09.524358
+
+[41] Log opened at 2024-03-31 17:01:09.533909
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- run -i 7
+[46] [Step Debug] <- run -i 34
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 8
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 17:01:09.984694
+
+[34] Log opened at 2024-03-31 17:01:09.996142
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[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] ->
+
+[34] [Step Debug] <- run -i 7
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- stop -i 8
+[43] [Step Debug] ->
+
+[43] Log closed at 2024-03-31 17:01:10.524011
+
+[43] Log opened at 2024-03-31 17:01:10.533028
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- run -i 7
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- stop -i 8
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-03-31 17:01:10.758984
+
+[48] Log opened at 2024-03-31 17:01:10.768335
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 7
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 17:01:11.000816
+
+[36] Log opened at 2024-03-31 17:01:11.013647
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 7
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 8
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 17:01:11.246211
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stop -i 8
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-03-31 17:01:11.387315
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 8
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 17:01:11.534622
+
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- stop -i 8
+[43] [Step Debug] ->
+
+[43] Log closed at 2024-03-31 17:01:11.696209
+
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- stop -i 8
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-03-31 17:01:11.826109
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 17:01:11.951556
+
+[36] Log opened at 2024-03-31 17:01:12.008622
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 7
+[34] Log opened at 2024-03-31 17:01:12.114896
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[48] Log opened at 2024-03-31 17:01:12.130513
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 7
+[48] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 7
+[43] Log opened at 2024-03-31 17:01:12.261866
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[25] Log opened at 2024-03-31 17:01:12.262219
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[43] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[43] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[43] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 6 -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 22
+[43] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[43] [Step Debug] <- run -i 7
+[25] [Step Debug] <- run -i 7
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stop -i 35
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-03-31 17:01:12.610395
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 17:01:12.911313
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 8
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 17:01:13.039863
+
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- stop -i 8
+[43] [Step Debug] ->
+
+[43] Log closed at 2024-03-31 17:01:13.430333
+
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- stop -i 8
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-03-31 17:01:13.839526
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 8
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 17:01:14.122342
+
+[49] Log opened at 2024-03-31 17:01:21.078331
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[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] ->
+
+[49] [Step Debug] <- run -i 7
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- stop -i 8
+[49] [Step Debug] ->
+
+[49] Log closed at 2024-03-31 17:01:22.345537
+
+[49] Log opened at 2024-03-31 17:01:23.453526
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[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] ->
+
+[49] [Step Debug] <- run -i 7
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- stop -i 8
+[49] [Step Debug] ->
+
+[49] Log closed at 2024-03-31 17:01:24.364022
+
+[49] Log opened at 2024-03-31 17:01:26.990214
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[50] Log opened at 2024-03-31 17:01:26.990519
+[51] Log opened at 2024-03-31 17:01:26.990529
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[46] Log opened at 2024-03-31 17:01:26.990801
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[49] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[46] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[50] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[50] [Step Debug] ->
+
+[49] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[46] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[50] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[51] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[49] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[46] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[50] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[51] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[49] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[50] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[46] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[51] [Step Debug] ->
+
+[49] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[46] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[51] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[50] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[49] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 6 -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 22
+[51] [Step Debug] <- breakpoint_set -i 6 -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 22
+[49] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 7
+[49] [Step Debug] <- run -i 7
+[51] [Step Debug] <- run -i 7
+[50] [Step Debug] <- run -i 7
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- stop -i 8
+[49] [Step Debug] ->
+
+[49] Log closed at 2024-03-31 17:01:27.668398
+
+[49] Log opened at 2024-03-31 17:01:27.729100
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] Log opened at 2024-03-31 17:01:27.730996
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[41] Log opened at 2024-03-31 17:01:27.731208
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ->
+
+[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[41] [Step Debug] ->
+
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[49] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[49] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[49] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[41] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[49] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[41] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[41] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[49] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[49] [Step Debug] <- run -i 7
+[41] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 7
+[41] [Step Debug] <- run -i 7
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stop -i 8
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-03-31 17:01:27.945979
+
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- stop -i 8
+[50] [Step Debug] ->
+
+[50] Log closed at 2024-03-31 17:01:28.228496
+
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- stop -i 8
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-03-31 17:01:28.514976
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stop -i 8
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-03-31 17:01:28.724229
+
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- stop -i 8
+[49] [Step Debug] ->
+
+[49] Log closed at 2024-03-31 17:01:28.922414
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 17:01:29.208442
+
+[50] Log opened at 2024-03-31 17:01:29.805379
+[41] Log opened at 2024-03-31 17:01:29.805416
+[46] Log opened at 2024-03-31 17:01:29.805437
+[49] Log opened at 2024-03-31 17:01:29.805437
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[51] Log opened at 2024-03-31 17:01:29.806004
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] Log opened at 2024-03-31 17:01:29.811277
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[50] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[51] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[49] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[50] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[46] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[51] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[49] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[46] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[46] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[49] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[46] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[50] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[41] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[49] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[51] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[50] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[41] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[51] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[49] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[46] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[50] [Step Debug] ->
+
+[49] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 6 -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 22
+[36] [Step Debug] <- breakpoint_set -i 6 -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 22
+[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[46] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[49] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 7
+[41] [Step Debug] <- run -i 7
+[49] [Step Debug] <- run -i 7
+[36] [Step Debug] <- run -i 7
+[51] [Step Debug] <- run -i 7
+[50] [Step Debug] <- run -i 7
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- stop -i 8
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-03-31 17:01:30.519573
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 17:01:30.775800
+
+[36] Log opened at 2024-03-31 17:01:30.794371
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 7
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stop -i 8
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-03-31 17:01:30.970236
+
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- stop -i 8
+[50] [Step Debug] ->
+
+[50] Log closed at 2024-03-31 17:01:31.144816
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stop -i 8
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-03-31 17:01:31.335878
+
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- stop -i 8
+[49] [Step Debug] ->
+
+[49] Log closed at 2024-03-31 17:01:31.535596
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 17:01:31.806587
+
+[49] Log opened at 2024-03-31 17:01:32.925643
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[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] ->
+
+[49] [Step Debug] <- run -i 7
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- stop -i 8
+[49] [Step Debug] ->
+
+[49] Log closed at 2024-03-31 17:01:36.550549
+
+[36] Log opened at 2024-03-31 17:01:36.623785
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] Log opened at 2024-03-31 17:01:36.630157
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[34] Log opened at 2024-03-31 17:01:36.630492
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[48] Log opened at 2024-03-31 17:01:36.631231
+[25] Log opened at 2024-03-31 17:01:36.631475
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] Log opened at 2024-03-31 17:01:36.632543
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ->
+
+[48] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[49] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[48] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[43] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[49] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[49] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[48] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[43] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[49] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[34] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[48] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[49] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[43] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] <- run -i 7
+[49] [Step Debug] <- run -i 7
+[25] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[34] [Step Debug] <- run -i 7
+[48] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 7
+[48] [Step Debug] <- run -i 7
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- run -i 7
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 17:01:36.881723
+
+[36] Log opened at 2024-03-31 17:01:36.890882
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 7
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- stop -i 8
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-03-31 17:01:37.297349
+
+[48] Log opened at 2024-03-31 17:01:37.307033
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 7
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 8
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 17:01:37.467863
+
+[25] Log opened at 2024-03-31 17:01:37.477608
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 7
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- stop -i 8
+[49] [Step Debug] ->
+
+[49] Log closed at 2024-03-31 17:01:37.777271
+
+[49] Log opened at 2024-03-31 17:01:37.787203
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[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] ->
+
+[49] [Step Debug] <- run -i 7
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 8
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 17:01:37.932172
+
+[34] Log opened at 2024-03-31 17:01:37.939160
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[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] ->
+
+[34] [Step Debug] <- run -i 7
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- stop -i 8
+[43] [Step Debug] ->
+
+[43] Log closed at 2024-03-31 17:01:38.102834
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 17:01:38.280082
+
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- stop -i 8
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-03-31 17:01:38.447672
+
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 8
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 17:01:38.622489
+
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- stop -i 8
+[49] [Step Debug] ->
+
+[49] Log closed at 2024-03-31 17:01:38.794704
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 8
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 17:01:38.958246
+
+[43] Log opened at 2024-03-31 17:01:38.997506
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- run -i 7
+[48] Log opened at 2024-03-31 17:01:39.042888
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[25] Log opened at 2024-03-31 17:01:39.051390
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[48] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[48] [Step Debug] ->
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[48] [Step Debug] ->
+
+[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[25] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[25] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 7
+[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 7
+[36] Log opened at 2024-03-31 17:01:39.076829
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 7
+[34] Log opened at 2024-03-31 17:01:39.185280
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[49] Log opened at 2024-03-31 17:01:39.185626
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[49] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[49] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[34] [Step Debug] ->
+
+[49] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[34] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[49] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -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 22
+[34] [Step Debug] ->
+
+[49] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 7
+[49] [Step Debug] <- run -i 7
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- stop -i 8
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-03-31 17:01:39.880004
+
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- stop -i 8
+[43] [Step Debug] ->
+
+[43] Log closed at 2024-03-31 17:01:39.903076
+
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- stop -i 8
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-03-31 17:01:40.150463
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stop -i 8
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-03-31 17:01:40.395847
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 8
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-03-31 17:01:40.660841
+
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- stop -i 8
+[49] [Step Debug] ->
+
+[49] Log closed at 2024-03-31 17:01:40.907298
+
+[22] Log opened at 2024-04-01 11:04:04.259431
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-04-01 11:04:07.450716
+
+[22] Log opened at 2024-04-01 11:04:07.475401
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-04-01 11:04:09.858614
+
+[25] Log opened at 2024-04-01 11:04:09.985210
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-04-01 11:04:10.900592
+
+[24] Log opened at 2024-04-01 11:04:11.041510
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 11:04:12.760007
+
+[28] Log opened at 2024-04-01 11:56:06.962999
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 11:56:11.585696
+
+[28] Log opened at 2024-04-01 11:56:11.613199
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 11:56:15.129431
+
+[22] Log opened at 2024-04-01 11:56:15.233772
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log opened at 2024-04-01 11:56:15.245534
+[27] Log opened at 2024-04-01 11:56:15.245440
+[28] Log opened at 2024-04-01 11:56:15.245284
+[29] Log opened at 2024-04-01 11:56:15.245431
+[30] Log opened at 2024-04-01 11:56:15.245501
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-04-01 11:56:15.536745
+
+[22] Log opened at 2024-04-01 11:56:15.811466
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 11:56:15.907625
+
+[28] Log opened at 2024-04-01 11:56:15.921178
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-04-01 11:56:16.034465
+
+[29] Log opened at 2024-04-01 11:56:16.050946
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 11:56:16.211721
+
+[30] Log opened at 2024-04-01 11:56:16.232537
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 11:56:16.383772
+
+[27] Log opened at 2024-04-01 11:56:16.404743
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 11:56:16.559166
+
+[23] Log opened at 2024-04-01 11:56:16.573130
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-04-01 11:56:16.930628
+
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 11:56:17.528395
+
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-04-01 11:56:18.832629
+
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 11:56:20.145667
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 11:56:21.517117
+
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 11:56:22.897353
+
+[30] Log opened at 2024-04-01 11:56:24.659850
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 11:56:27.232379
+
+[30] Log opened at 2024-04-01 11:56:27.327061
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 11:56:27.951092
+
+[25] Log opened at 2024-04-01 11:56:28.096002
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-04-01 11:56:28.215727
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-04-01 11:56:28.937665
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 11:56:29.392138
+
+[24] Log opened at 2024-04-01 11:56:31.433907
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 11:56:36.783404
+
+[24] Log opened at 2024-04-01 11:56:36.881719
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] Log opened at 2024-04-01 11:56:36.886736
+[28] Log opened at 2024-04-01 11:56:36.886803
+[29] Log opened at 2024-04-01 11:56:36.886828
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[33] Log opened at 2024-04-01 11:56:36.886822
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-04-01 11:56:36.887614
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 11:56:37.123154
+
+[24] Log opened at 2024-04-01 11:56:37.135678
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-04-01 11:56:37.546161
+
+[29] Log opened at 2024-04-01 11:56:37.554463
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 11:56:37.753520
+
+[28] Log opened at 2024-04-01 11:56:37.761995
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 11:56:37.944393
+
+[27] Log opened at 2024-04-01 11:56:37.954248
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 11:56:38.480258
+
+[33] Log opened at 2024-04-01 11:56:38.487648
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-04-01 11:56:38.717987
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 11:56:38.938870
+
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-04-01 11:56:39.145764
+
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 11:56:39.380475
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 11:56:39.626610
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 11:56:39.899850
+
+[24] Log opened at 2024-04-01 11:56:39.928615
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 11:56:40.924609
+
+[31] Log opened at 2024-04-01 11:56:51.870631
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 11:56:53.227269
+
+[23] Log opened at 2024-04-01 11:56:53.246406
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 11:56:54.604961
+
+[23] Log opened at 2024-04-01 11:56:56.924987
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 11:56:57.830480
+
+[29] Log opened at 2024-04-01 11:57:25.668289
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-04-01 11:57:29.435649
+
+[27] Log opened at 2024-04-01 11:57:29.631625
+[24] Log opened at 2024-04-01 11:57:29.631676
+[29] Log opened at 2024-04-01 11:57:29.631677
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[28] Log opened at 2024-04-01 11:57:29.631941
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[26] Log opened at 2024-04-01 11:57:29.631985
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[33] Log opened at 2024-04-01 11:57:29.634258
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-04-01 11:57:30.587816
+
+[29] Log opened at 2024-04-01 11:57:30.596543
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 11:57:30.752480
+
+[27] Log opened at 2024-04-01 11:57:30.761218
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 11:57:30.911650
+
+[28] Log opened at 2024-04-01 11:57:30.920501
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 11:57:31.086724
+
+[33] Log opened at 2024-04-01 11:57:31.097146
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 11:57:31.324740
+
+[24] Log opened at 2024-04-01 11:57:31.330845
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 11:57:31.572233
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 11:57:31.655988
+
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-04-01 11:57:31.756400
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 11:57:32.004788
+
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 11:57:32.240525
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 11:57:32.468131
+
+[33] Log opened at 2024-04-01 11:57:32.567453
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 11:57:33.620567
+
+[30] Log opened at 2024-04-01 11:58:05.861440
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 11:58:09.819424
+
+[23] Log opened at 2024-04-01 11:58:09.962167
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[30] Log opened at 2024-04-01 11:58:09.962731
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[26] Log opened at 2024-04-01 11:58:09.964180
+[22] Log opened at 2024-04-01 11:58:09.964128
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[34] Log opened at 2024-04-01 11:58:09.964262
+[24] Log opened at 2024-04-01 11:58:09.964647
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-04-01 11:58:10.604031
+
+[22] Log opened at 2024-04-01 11:58:10.614255
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 11:58:10.956379
+
+[30] Log opened at 2024-04-01 11:58:10.964977
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 11:58:11.130283
+
+[23] Log opened at 2024-04-01 11:58:11.138493
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 11:58:11.273948
+
+[26] Log opened at 2024-04-01 11:58:11.283483
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 11:58:11.452948
+
+[24] Log opened at 2024-04-01 11:58:11.461081
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-04-01 11:58:11.710253
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 11:58:11.783071
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-04-01 11:58:11.878016
+
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 11:58:12.111489
+
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 11:58:12.338343
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 11:58:12.540396
+
+[22] Log opened at 2024-04-01 11:58:12.592064
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-04-01 11:58:13.627942
+
+[27] Log opened at 2024-04-01 11:58:41.088386
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 11:58:46.000698
+
+[27] Log opened at 2024-04-01 11:58:46.135407
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-04-01 11:58:46.139110
+[33] Log opened at 2024-04-01 11:58:46.140287
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[35] Log opened at 2024-04-01 11:58:46.140040
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[28] Log opened at 2024-04-01 11:58:46.141118
+[24] Log opened at 2024-04-01 11:58:46.141324
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 11:58:46.415274
+
+[27] Log opened at 2024-04-01 11:58:46.429811
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-04-01 11:58:46.965566
+
+[34] Log opened at 2024-04-01 11:58:46.976679
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 11:58:47.527591
+
+[33] Log opened at 2024-04-01 11:58:47.535817
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 11:58:47.702875
+
+[24] Log opened at 2024-04-01 11:58:47.712000
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-04-01 11:58:47.939377
+
+[35] Log opened at 2024-04-01 11:58:47.949161
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 11:58:48.204621
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 11:58:48.386741
+
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-04-01 11:58:48.568159
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 11:58:48.810717
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 11:58:49.021414
+
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-04-01 11:58:49.231798
+
+[24] Log opened at 2024-04-01 11:58:49.262523
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 11:58:50.277292
+
+[23] Log opened at 2024-04-01 12:00:29.438776
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 12:00:34.228249
+
+[26] Log opened at 2024-04-01 12:00:34.385236
+[28] Log opened at 2024-04-01 12:00:34.385242
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[22] Log opened at 2024-04-01 12:00:34.385333
+[23] Log opened at 2024-04-01 12:00:34.385335
+[36] Log opened at 2024-04-01 12:00:34.385354
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] Log opened at 2024-04-01 12:00:34.388189
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:00:35.050099
+
+[27] Log opened at 2024-04-01 12:00:35.058630
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 12:00:35.217665
+
+[28] Log opened at 2024-04-01 12:00:35.226080
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 12:00:35.551932
+
+[23] Log opened at 2024-04-01 12:00:35.561050
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:00:35.794295
+
+[26] Log opened at 2024-04-01 12:00:35.802235
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-04-01 12:00:36.188196
+
+[22] Log opened at 2024-04-01 12:00:36.194004
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:00:36.443996
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-04-01 12:00:36.536041
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:00:36.633073
+
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 12:00:36.888633
+
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 12:00:37.132490
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:00:37.341913
+
+[28] Log opened at 2024-04-01 12:00:37.371496
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 12:00:38.411579
+
+[33] Log opened at 2024-04-01 12:01:16.202710
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:01:20.895932
+
+[36] Log opened at 2024-04-01 12:01:21.104401
+[24] Log opened at 2024-04-01 12:01:21.104375
+[35] Log opened at 2024-04-01 12:01:21.104374
+[27] Log opened at 2024-04-01 12:01:21.104385
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[37] Log opened at 2024-04-01 12:01:21.105331
+[33] Log opened at 2024-04-01 12:01:21.105765
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:01:21.972255
+
+[33] Log opened at 2024-04-01 12:01:21.980768
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:01:22.147779
+
+[36] Log opened at 2024-04-01 12:01:22.156836
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 12:01:22.392294
+
+[37] Log opened at 2024-04-01 12:01:22.401875
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:01:22.645671
+
+[27] Log opened at 2024-04-01 12:01:22.656689
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 12:01:22.896187
+
+[24] Log opened at 2024-04-01 12:01:22.903371
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-04-01 12:01:23.145059
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 12:01:23.241241
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:01:23.336783
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:01:23.578633
+
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 12:01:23.830196
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:01:24.053945
+
+[27] Log opened at 2024-04-01 12:01:24.087776
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:01:25.111831
+
+[23] Log opened at 2024-04-01 12:01:31.655426
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 12:01:35.221430
+
+[23] Log opened at 2024-04-01 12:01:35.337078
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] Log opened at 2024-04-01 12:01:35.342794
+[26] Log opened at 2024-04-01 12:01:35.342839
+[37] Log opened at 2024-04-01 12:01:35.342771
+[28] Log opened at 2024-04-01 12:01:35.342875
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log opened at 2024-04-01 12:01:35.343622
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 12:01:35.599866
+
+[23] Log opened at 2024-04-01 12:01:35.612413
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 12:01:36.095152
+
+[24] Log opened at 2024-04-01 12:01:36.104541
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 12:01:36.289343
+
+[37] Log opened at 2024-04-01 12:01:36.299335
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:01:36.768556
+
+[26] Log opened at 2024-04-01 12:01:36.777123
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 12:01:37.005601
+
+[28] Log opened at 2024-04-01 12:01:37.015488
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:01:37.247218
+
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 12:01:37.415666
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 12:01:37.598663
+
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 12:01:37.916675
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:01:38.131969
+
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 12:01:38.351243
+
+[37] Log opened at 2024-04-01 12:01:38.402337
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 12:01:39.392206
+
+[33] Log opened at 2024-04-01 12:02:22.035634
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:02:25.825747
+
+[27] Log opened at 2024-04-01 12:02:25.984864
+[23] Log opened at 2024-04-01 12:02:25.984785
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[36] Log opened at 2024-04-01 12:02:25.985333
+[38] Log opened at 2024-04-01 12:02:25.985574
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[39] Log opened at 2024-04-01 12:02:25.986307
+[33] Log opened at 2024-04-01 12:02:25.986585
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:02:26.925404
+
+[33] Log opened at 2024-04-01 12:02:26.932644
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:02:27.103519
+
+[36] Log opened at 2024-04-01 12:02:27.112689
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:02:27.267791
+
+[38] Log opened at 2024-04-01 12:02:27.278389
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 12:02:27.436059
+
+[23] Log opened at 2024-04-01 12:02:27.450853
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 12:02:27.711406
+
+[39] Log opened at 2024-04-01 12:02:27.717835
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:02:27.967542
+
+[39] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 12:02:28.060078
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:02:28.123807
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:02:28.369180
+
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:02:28.616957
+
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 12:02:28.830725
+
+[38] Log opened at 2024-04-01 12:02:28.861385
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:02:29.898687
+
+[26] Log opened at 2024-04-01 12:03:06.108390
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:03:11.077448
+
+[26] Log opened at 2024-04-01 12:03:11.242935
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[28] Log opened at 2024-04-01 12:03:11.243520
+[37] Log opened at 2024-04-01 12:03:11.243504
+[40] Log opened at 2024-04-01 12:03:11.243545
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[27] Log opened at 2024-04-01 12:03:11.245188
+[23] Log opened at 2024-04-01 12:03:11.245164
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:03:12.006926
+
+[26] Log opened at 2024-04-01 12:03:12.018237
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:03:12.182050
+
+[27] Log opened at 2024-04-01 12:03:12.190288
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 12:03:12.636254
+
+[28] Log opened at 2024-04-01 12:03:12.644897
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 12:03:12.882065
+
+[23] Log opened at 2024-04-01 12:03:12.890593
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 12:03:13.120938
+
+[37] Log opened at 2024-04-01 12:03:13.127919
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 12:03:13.357114
+
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 12:03:13.462266
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:03:13.548852
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:03:13.823457
+
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 12:03:14.069285
+
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 12:03:14.275704
+
+[23] Log opened at 2024-04-01 12:03:14.316114
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-04-01 12:03:15.474518
+
+[33] Log opened at 2024-04-01 12:27:15.783410
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:27:17.986158
+
+[36] Log opened at 2024-04-01 12:27:18.399186
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:27:19.468540
+
+[41] Log opened at 2024-04-01 12:27:30.785666
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:27:35.599950
+
+[41] Log opened at 2024-04-01 12:27:35.733862
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] Log opened at 2024-04-01 12:27:35.738386
+[40] Log opened at 2024-04-01 12:27:35.738402
+[26] Log opened at 2024-04-01 12:27:35.738593
+[27] Log opened at 2024-04-01 12:27:35.738412
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[28] Log opened at 2024-04-01 12:27:35.738798
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:27:36.055921
+
+[41] Log opened at 2024-04-01 12:27:36.073799
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:27:36.692262
+
+[27] Log opened at 2024-04-01 12:27:36.700811
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:27:36.946426
+
+[26] Log opened at 2024-04-01 12:27:36.955717
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 12:27:37.530933
+
+[37] Log opened at 2024-04-01 12:27:37.539543
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 12:27:37.803868
+
+[40] Log opened at 2024-04-01 12:27:37.812425
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 12:27:38.096737
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:27:38.303328
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:27:38.530097
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:27:38.770530
+
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 12:27:39.026810
+
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 12:27:39.262899
+
+[27] Log opened at 2024-04-01 12:27:39.299865
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:27:40.562979
+
+[33] Log opened at 2024-04-01 12:28:26.250979
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:28:27.737956
+
+[36] Log opened at 2024-04-01 12:28:28.106596
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:28:28.801441
+
+[38] Log opened at 2024-04-01 12:28:47.725451
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:28:52.527847
+
+[26] Log opened at 2024-04-01 12:28:52.665129
+[41] Log opened at 2024-04-01 12:28:52.665186
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[38] Log opened at 2024-04-01 12:28:52.665915
+[28] Log opened at 2024-04-01 12:28:52.666050
+[42] Log opened at 2024-04-01 12:28:52.665834
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] Log opened at 2024-04-01 12:28:52.668154
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:28:53.279631
+
+[41] Log opened at 2024-04-01 12:28:53.288004
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 12:28:53.446447
+
+[28] Log opened at 2024-04-01 12:28:53.456480
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:28:53.795423
+
+[38] Log opened at 2024-04-01 12:28:53.804388
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 12:28:53.959020
+
+[40] Log opened at 2024-04-01 12:28:53.967125
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:28:54.123762
+
+[26] Log opened at 2024-04-01 12:28:54.130497
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-04-01 12:28:54.387807
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:28:54.466127
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:28:54.577298
+
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 12:28:54.840047
+
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:28:55.084077
+
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 12:28:55.288426
+
+[26] Log opened at 2024-04-01 12:28:55.438122
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:28:56.412739
+
+[27] Log opened at 2024-04-01 12:29:17.610849
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:29:22.305080
+
+[27] Log opened at 2024-04-01 12:29:22.444913
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log opened at 2024-04-01 12:29:22.451596
+[36] Log opened at 2024-04-01 12:29:22.451578
+[33] Log opened at 2024-04-01 12:29:22.451559
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[43] Log opened at 2024-04-01 12:29:22.452766
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log opened at 2024-04-01 12:29:22.463391
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:29:22.724605
+
+[27] Log opened at 2024-04-01 12:29:22.735128
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:29:23.223885
+
+[41] Log opened at 2024-04-01 12:29:23.233738
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-04-01 12:29:23.420681
+
+[42] Log opened at 2024-04-01 12:29:23.429375
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:29:23.662105
+
+[36] Log opened at 2024-04-01 12:29:23.670929
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:29:24.185712
+
+[33] Log opened at 2024-04-01 12:29:24.194325
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:29:24.431478
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:29:24.611881
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:29:24.784720
+
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-04-01 12:29:25.006523
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:29:25.324813
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:29:25.555325
+
+[41] Log opened at 2024-04-01 12:29:25.600495
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:29:26.589865
+
+[38] Log opened at 2024-04-01 12:29:48.210803
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:29:51.922972
+
+[38] Log opened at 2024-04-01 12:29:52.071950
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[40] Log opened at 2024-04-01 12:29:52.074333
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[27] Log opened at 2024-04-01 12:29:52.074742
+[43] Log opened at 2024-04-01 12:29:52.074770
+[44] Log opened at 2024-04-01 12:29:52.075157
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[26] Log opened at 2024-04-01 12:29:52.075169
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:29:52.375449
+
+[38] Log opened at 2024-04-01 12:29:52.389538
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:29:52.921970
+
+[43] Log opened at 2024-04-01 12:29:52.931446
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:29:53.122649
+
+[27] Log opened at 2024-04-01 12:29:53.132263
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:29:53.348667
+
+[26] Log opened at 2024-04-01 12:29:53.357405
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:29:53.596179
+
+[44] Log opened at 2024-04-01 12:29:53.605622
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 12:29:54.115158
+
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:29:54.338919
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:29:54.562959
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:29:54.796288
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:29:55.016628
+
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:29:55.317302
+
+[43] Log opened at 2024-04-01 12:29:55.366276
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:29:56.224378
+
+[43] Log opened at 2024-04-01 12:30:01.134858
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:30:05.939027
+
+[43] Log opened at 2024-04-01 12:30:06.072255
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] Log opened at 2024-04-01 12:30:06.077244
+[36] Log opened at 2024-04-01 12:30:06.077245
+[41] Log opened at 2024-04-01 12:30:06.077278
+[42] Log opened at 2024-04-01 12:30:06.077502
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log opened at 2024-04-01 12:30:06.078334
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:30:06.378376
+
+[43] Log opened at 2024-04-01 12:30:06.387480
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:30:06.913126
+
+[33] Log opened at 2024-04-01 12:30:06.922143
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-04-01 12:30:07.415161
+
+[42] Log opened at 2024-04-01 12:30:07.424378
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:30:07.574190
+
+[36] Log opened at 2024-04-01 12:30:07.583213
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 12:30:07.819450
+
+[45] Log opened at 2024-04-01 12:30:07.829085
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:30:08.185563
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:30:08.343934
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:30:08.519869
+
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-04-01 12:30:08.726437
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:30:08.908898
+
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 12:30:09.113672
+
+[43] Log opened at 2024-04-01 12:30:09.167773
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:30:10.050186
+
+[38] Log opened at 2024-04-01 12:32:04.905857
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:32:09.475237
+
+[44] Log opened at 2024-04-01 12:32:09.634019
+[26] Log opened at 2024-04-01 12:32:09.634105
+[27] Log opened at 2024-04-01 12:32:09.634078
+[38] Log opened at 2024-04-01 12:32:09.634091
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[33] Log opened at 2024-04-01 12:32:09.635105
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[41] Log opened at 2024-04-01 12:32:09.635306
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:32:10.464209
+
+[33] Log opened at 2024-04-01 12:32:10.474185
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:32:10.710233
+
+[27] Log opened at 2024-04-01 12:32:10.719306
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:32:10.967613
+
+[44] Log opened at 2024-04-01 12:32:10.974282
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:32:11.253178
+
+[44] Log opened at 2024-04-01 12:32:11.262735
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:32:11.337813
+
+[38] Log opened at 2024-04-01 12:32:11.347567
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:32:11.628349
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:32:11.931257
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:32:12.130750
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 12:32:12.359769
+
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:32:12.585250
+
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:32:12.796940
+
+[33] Log opened at 2024-04-01 12:32:12.827520
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:32:13.842089
+
+[36] Log opened at 2024-04-01 12:32:47.410056
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:32:51.906024
+
+[36] Log opened at 2024-04-01 12:32:52.042560
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] Log opened at 2024-04-01 12:32:52.047508
+[43] Log opened at 2024-04-01 12:32:52.047604
+[26] Log opened at 2024-04-01 12:32:52.047589
+[46] Log opened at 2024-04-01 12:32:52.047624
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] Log opened at 2024-04-01 12:32:52.048396
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:32:52.305585
+
+[36] Log opened at 2024-04-01 12:32:52.319035
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:32:52.887652
+
+[26] Log opened at 2024-04-01 12:32:52.897978
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:32:53.088924
+
+[41] Log opened at 2024-04-01 12:32:53.098388
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 12:32:53.327222
+
+[45] Log opened at 2024-04-01 12:32:53.335960
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:32:53.869914
+
+[43] Log opened at 2024-04-01 12:32:53.878077
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 12:32:54.115484
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:32:54.285550
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:32:54.471862
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:32:54.695619
+
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 12:32:54.895209
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:32:55.121839
+
+[41] Log opened at 2024-04-01 12:32:55.156705
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:32:56.178033
+
+[44] Log opened at 2024-04-01 12:33:31.448849
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:33:35.812584
+
+[44] Log opened at 2024-04-01 12:33:35.958845
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] Log opened at 2024-04-01 12:33:35.963379
+[38] Log opened at 2024-04-01 12:33:35.963358
+[33] Log opened at 2024-04-01 12:33:35.963458
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[36] Log opened at 2024-04-01 12:33:35.963776
+[47] Log opened at 2024-04-01 12:33:35.963611
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:33:36.217065
+
+[44] Log opened at 2024-04-01 12:33:36.226736
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 12:33:36.732870
+
+[46] Log opened at 2024-04-01 12:33:36.743670
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:33:37.132428
+
+[38] Log opened at 2024-04-01 12:33:37.141477
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:33:37.297601
+
+[36] Log opened at 2024-04-01 12:33:37.305638
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:33:37.520146
+
+[33] Log opened at 2024-04-01 12:33:37.529003
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 12:33:37.767863
+
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:33:37.940655
+
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 12:33:38.127015
+
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:33:38.354885
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:33:38.579009
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:33:38.800100
+
+[36] Log opened at 2024-04-01 12:33:38.834255
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log opened at 2024-04-01 12:33:38.904656
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log opened at 2024-04-01 12:33:38.925570
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log opened at 2024-04-01 12:33:39.012059
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] Log opened at 2024-04-01 12:33:39.014452
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:33:39.731431
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:33:39.819108
+
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 12:33:40.197439
+
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:33:40.539100
+
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:33:40.873626
+
+[43] Log opened at 2024-04-01 12:38:22.719246
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:38:27.700353
+
+[36] Log opened at 2024-04-01 12:38:27.893509
+[47] Log opened at 2024-04-01 12:38:27.893575
+[43] Log opened at 2024-04-01 12:38:27.893543
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[26] Log opened at 2024-04-01 12:38:27.894951
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] Log opened at 2024-04-01 12:38:27.896439
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[48] Log opened at 2024-04-01 12:38:27.897888
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:38:28.819696
+
+[43] Log opened at 2024-04-01 12:38:28.827747
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:38:29.068433
+
+[26] Log opened at 2024-04-01 12:38:29.077352
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 12:38:29.313858
+
+[47] Log opened at 2024-04-01 12:38:29.322990
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:38:29.564586
+
+[36] Log opened at 2024-04-01 12:38:29.574372
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-04-01 12:38:29.872963
+
+[48] Log opened at 2024-04-01 12:38:29.885572
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:38:30.177208
+
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-04-01 12:38:30.290707
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:38:30.376795
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:38:30.659392
+
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 12:38:30.917819
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:38:31.156782
+
+[36] Log opened at 2024-04-01 12:38:31.240841
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log opened at 2024-04-01 12:38:31.280668
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] Log opened at 2024-04-01 12:38:31.282143
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log opened at 2024-04-01 12:38:31.354312
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] Log opened at 2024-04-01 12:38:31.356298
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:38:32.050591
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 12:38:32.176725
+
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 12:38:32.583730
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:38:32.976383
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:38:33.326945
+
+[36] Log opened at 2024-04-01 12:38:33.816737
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:38:35.297391
+
+[36] Log opened at 2024-04-01 12:38:35.354852
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:38:39.669010
+
+[46] Log opened at 2024-04-01 12:38:39.859265
+[36] Log opened at 2024-04-01 12:38:39.859304
+[48] Log opened at 2024-04-01 12:38:39.859467
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[38] Log opened at 2024-04-01 12:38:39.859482
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[49] Log opened at 2024-04-01 12:38:39.860021
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[44] Log opened at 2024-04-01 12:38:39.860527
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-04-01 12:38:40.558860
+
+[48] Log opened at 2024-04-01 12:38:40.567387
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:38:40.917870
+
+[36] Log opened at 2024-04-01 12:38:40.926377
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:38:41.161087
+
+[44] Log opened at 2024-04-01 12:38:41.170109
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 12:38:41.412520
+
+[46] Log opened at 2024-04-01 12:38:41.422626
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:38:41.645025
+
+[38] Log opened at 2024-04-01 12:38:41.652058
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 12:38:41.878108
+
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:38:41.974929
+
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-04-01 12:38:42.053953
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:38:42.316283
+
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:38:42.542672
+
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 12:38:42.758578
+
+[36] Log opened at 2024-04-01 12:38:42.789915
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log opened at 2024-04-01 12:38:42.864147
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log opened at 2024-04-01 12:38:42.875083
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log opened at 2024-04-01 12:38:42.950460
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] Log opened at 2024-04-01 12:38:42.953041
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:38:43.658498
+
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 12:38:43.727337
+
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:38:44.111869
+
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:38:44.474630
+
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 12:38:44.831944
+
+[41] Log opened at 2024-04-01 12:50:28.512462
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:50:30.554032
+
+[43] Log opened at 2024-04-01 12:50:30.778219
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:50:31.807277
+
+[48] Log opened at 2024-04-01 12:51:12.677637
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-04-01 12:51:14.754669
+
+[36] Log opened at 2024-04-01 12:51:15.195856
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:51:16.200472
+
+[46] Log opened at 2024-04-01 12:51:31.132892
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 12:51:33.077714
+
+[33] Log opened at 2024-04-01 12:51:46.675443
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:51:48.648972
+
+[44] Log opened at 2024-04-01 12:53:08.707990
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:53:13.564387
+
+[47] Log opened at 2024-04-01 12:53:13.752903
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[41] Log opened at 2024-04-01 12:53:13.752915
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[49] Log opened at 2024-04-01 12:53:13.753636
+[44] Log opened at 2024-04-01 12:53:13.753660
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[38] Log opened at 2024-04-01 12:53:13.753673
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] Log opened at 2024-04-01 12:53:13.756987
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:53:14.757690
+
+[44] Log opened at 2024-04-01 12:53:14.765908
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:53:15.009490
+
+[41] Log opened at 2024-04-01 12:53:15.018310
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:53:15.290362
+
+[43] Log opened at 2024-04-01 12:53:15.301990
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 12:53:15.534983
+
+[49] Log opened at 2024-04-01 12:53:15.544388
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 12:53:15.774636
+
+[47] Log opened at 2024-04-01 12:53:15.781526
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:53:16.043980
+
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 12:53:16.146717
+
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 12:53:16.212427
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:53:16.520150
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:53:16.777892
+
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 12:53:16.995296
+
+[41] Log opened at 2024-04-01 12:53:17.028159
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 12:53:18.055218
+
+[36] Log opened at 2024-04-01 12:56:29.399615
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:56:34.260284
+
+[36] Log opened at 2024-04-01 12:56:34.427995
+[46] Log opened at 2024-04-01 12:56:34.428038
+[47] Log opened at 2024-04-01 12:56:34.428038
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[50] Log opened at 2024-04-01 12:56:34.428558
+[38] Log opened at 2024-04-01 12:56:34.428888
+[33] Log opened at 2024-04-01 12:56:34.428787
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:56:35.351229
+
+[36] Log opened at 2024-04-01 12:56:35.360727
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:56:35.611759
+
+[33] Log opened at 2024-04-01 12:56:35.620943
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 12:56:35.864084
+
+[47] Log opened at 2024-04-01 12:56:35.873855
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:56:36.113552
+
+[38] Log opened at 2024-04-01 12:56:36.123175
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 12:56:36.353744
+
+[46] Log opened at 2024-04-01 12:56:36.361280
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-04-01 12:56:36.609440
+
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 12:56:36.713344
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 12:56:36.794530
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 12:56:37.045262
+
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 12:56:37.308948
+
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 12:56:37.540215
+
+[47] Log opened at 2024-04-01 12:56:37.633020
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 12:56:38.616119
+
+[43] Log opened at 2024-04-01 12:57:10.488468
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 12:57:12.613645
+
+[49] Log opened at 2024-04-01 12:57:13.049827
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 12:57:14.059137
+
+[41] Log opened at 2024-04-01 13:01:35.261858
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:01:40.111402
+
+[33] Log opened at 2024-04-01 13:01:40.332728
+[50] Log opened at 2024-04-01 13:01:40.332713
+[41] Log opened at 2024-04-01 13:01:40.332661
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[36] Log opened at 2024-04-01 13:01:40.333352
+[51] Log opened at 2024-04-01 13:01:40.333340
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[46] Log opened at 2024-04-01 13:01:40.333738
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:01:41.363094
+
+[41] Log opened at 2024-04-01 13:01:41.372055
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 13:01:41.612824
+
+[36] Log opened at 2024-04-01 13:01:41.622540
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-04-01 13:01:41.869389
+
+[50] Log opened at 2024-04-01 13:01:41.878779
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 13:01:42.120056
+
+[33] Log opened at 2024-04-01 13:01:42.129484
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:01:42.364973
+
+[51] Log opened at 2024-04-01 13:01:42.371569
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 13:01:42.607368
+
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:01:42.695875
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:01:42.780866
+
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 13:01:43.054357
+
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-04-01 13:01:43.341586
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 13:01:43.602015
+
+[51] Log opened at 2024-04-01 13:01:43.640129
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:01:44.632711
+
+[47] Log opened at 2024-04-01 13:01:54.618392
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 13:01:59.494140
+
+[47] Log opened at 2024-04-01 13:01:59.612323
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] Log opened at 2024-04-01 13:01:59.617865
+[46] Log opened at 2024-04-01 13:01:59.618118
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[49] Log opened at 2024-04-01 13:01:59.618140
+[43] Log opened at 2024-04-01 13:01:59.618096
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[52] Log opened at 2024-04-01 13:01:59.618906
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 13:01:59.879544
+
+[47] Log opened at 2024-04-01 13:01:59.894654
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 13:02:00.441787
+
+[46] Log opened at 2024-04-01 13:02:00.454223
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:02:00.642887
+
+[41] Log opened at 2024-04-01 13:02:00.652273
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:02:01.164586
+
+[43] Log opened at 2024-04-01 13:02:01.173135
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:02:01.407894
+
+[49] Log opened at 2024-04-01 13:02:01.416982
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:02:01.652761
+
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 13:02:01.814454
+
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 13:02:02.005466
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:02:02.226447
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:02:02.471294
+
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:02:02.690312
+
+[41] Log opened at 2024-04-01 13:02:02.721584
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:02:03.829269
+
+[50] Log opened at 2024-04-01 13:04:32.080772
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-04-01 13:04:36.870840
+
+[50] Log opened at 2024-04-01 13:04:37.026041
+[51] Log opened at 2024-04-01 13:04:37.026369
+[33] Log opened at 2024-04-01 13:04:37.026368
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[47] Log opened at 2024-04-01 13:04:37.026368
+[52] Log opened at 2024-04-01 13:04:37.026379
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] Log opened at 2024-04-01 13:04:37.030263
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-04-01 13:04:37.967275
+
+[50] Log opened at 2024-04-01 13:04:37.975434
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 13:04:38.207810
+
+[33] Log opened at 2024-04-01 13:04:38.217327
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 13:04:38.445543
+
+[47] Log opened at 2024-04-01 13:04:38.456599
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:04:38.692573
+
+[52] Log opened at 2024-04-01 13:04:38.702363
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:04:38.929508
+
+[51] Log opened at 2024-04-01 13:04:38.936326
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:04:39.169629
+
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:04:39.262863
+
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-04-01 13:04:39.339794
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 13:04:39.593228
+
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 13:04:39.847228
+
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:04:40.066394
+
+[52] Log opened at 2024-04-01 13:04:40.100579
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:04:41.221629
+
+[43] Log opened at 2024-04-01 13:05:24.813093
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:05:27.210649
+
+[49] Log opened at 2024-04-01 13:05:27.356689
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:05:28.399334
+
+[41] Log opened at 2024-04-01 13:05:50.095179
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1746
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/viewCosidotapablandaForm.php -n 307
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- run -i 8
+[41] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stack_get -i 9
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- context_names -i 10 -d 0
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- context_get -i 11 -d 0 -c 0
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 12 -- KGFycmF5KSRwcmVzdXB1ZXN0b0VudGl0eQ==
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- context_names -i 13 -d 0
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- context_get -i 14 -d 0 -c 0
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 15 -- JHByZXN1cHVlc3RvRW50aXR5
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- context_names -i 16 -d 0
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- eval -i 18 -- JHByZXN1cHVlc3RvRW50aXR5LT5pc19kdXBsaWNhZG8=
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- context_names -i 19 -d 0
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- context_get -i 20 -d 0 -c 0
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stop -i 21
+[41] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-04-01 13:07:48.679902
+
+[41] Log opened at 2024-04-01 13:07:48.915400
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:07:49.716321
+
+[54] Log opened at 2024-04-01 13:08:15.394475
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-04-01 13:08:17.585462
+
+[53] Log opened at 2024-04-01 13:08:17.715397
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:08:18.656922
+
+[51] Log opened at 2024-04-01 13:08:24.187150
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:08:29.059881
+
+[50] Log opened at 2024-04-01 13:08:29.197707
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] Log opened at 2024-04-01 13:08:29.211405
+[49] Log opened at 2024-04-01 13:08:29.211619
+[43] Log opened at 2024-04-01 13:08:29.211540
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[41] Log opened at 2024-04-01 13:08:29.213004
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[54] Log opened at 2024-04-01 13:08:29.214134
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-04-01 13:08:29.522215
+
+[50] Log opened at 2024-04-01 13:08:29.533236
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-04-01 13:08:30.036815
+
+[54] Log opened at 2024-04-01 13:08:30.045868
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:08:30.586908
+
+[52] Log opened at 2024-04-01 13:08:30.595516
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log opened at 2024-04-01 13:08:30.687127
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log opened at 2024-04-01 13:08:30.695858
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:08:30.906990
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:08:31.152142
+
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:08:31.419533
+
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:08:31.605736
+
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-04-01 13:08:31.685861
+
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-04-01 13:08:31.899979
+
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:08:32.154933
+
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:08:35.913443
+
+[55] Log opened at 2024-04-01 13:08:36.040418
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] Log opened at 2024-04-01 13:08:36.044952
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[47] Log opened at 2024-04-01 13:08:36.045191
+[33] Log opened at 2024-04-01 13:08:36.045194
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[43] Log opened at 2024-04-01 13:08:36.045492
+[51] Log opened at 2024-04-01 13:08:36.045891
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:08:36.321020
+
+[55] Log opened at 2024-04-01 13:08:36.332044
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:08:36.861067
+
+[43] Log opened at 2024-04-01 13:08:36.870920
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:08:37.268302
+
+[53] Log opened at 2024-04-01 13:08:37.277379
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:08:37.447928
+
+[51] Log opened at 2024-04-01 13:08:37.457679
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 13:08:37.703157
+
+[33] Log opened at 2024-04-01 13:08:37.712593
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 13:08:37.988813
+
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:08:38.261610
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:08:38.521686
+
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:08:38.785654
+
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:08:38.999511
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 13:08:39.216892
+
+[55] Log opened at 2024-04-01 13:08:39.274171
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:08:40.285803
+
+[55] Log opened at 2024-04-01 13:08:42.389003
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:08:47.118485
+
+[55] Log opened at 2024-04-01 13:08:47.257987
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] Log opened at 2024-04-01 13:08:47.263401
+[49] Log opened at 2024-04-01 13:08:47.263421
+[52] Log opened at 2024-04-01 13:08:47.263414
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[41] Log opened at 2024-04-01 13:08:47.263667
+[54] Log opened at 2024-04-01 13:08:47.263692
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:08:47.546419
+
+[55] Log opened at 2024-04-01 13:08:47.563596
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:08:48.046169
+
+[41] Log opened at 2024-04-01 13:08:48.055838
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-04-01 13:08:48.232705
+
+[50] Log opened at 2024-04-01 13:08:48.242378
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-04-01 13:08:48.398342
+
+[54] Log opened at 2024-04-01 13:08:48.407343
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:08:48.571723
+
+[52] Log opened at 2024-04-01 13:08:48.583200
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:08:49.050252
+
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:08:49.261705
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:08:49.480962
+
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-04-01 13:08:49.705381
+
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-04-01 13:08:50.022794
+
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:08:50.236988
+
+[55] Log opened at 2024-04-01 13:08:50.281438
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:08:51.282880
+
+[43] Log opened at 2024-04-01 13:08:57.408726
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:09:01.704085
+
+[43] Log opened at 2024-04-01 13:09:01.815594
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] Log opened at 2024-04-01 13:09:01.819577
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[33] Log opened at 2024-04-01 13:09:01.819987
+[49] Log opened at 2024-04-01 13:09:01.820169
+[51] Log opened at 2024-04-01 13:09:01.819757
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[41] Log opened at 2024-04-01 13:09:01.821450
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:09:02.091828
+
+[43] Log opened at 2024-04-01 13:09:02.105459
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 13:09:02.602318
+
+[33] Log opened at 2024-04-01 13:09:02.612302
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:09:02.776491
+
+[51] Log opened at 2024-04-01 13:09:02.786130
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:09:02.949614
+
+[49] Log opened at 2024-04-01 13:09:02.958613
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:09:03.129774
+
+[41] Log opened at 2024-04-01 13:09:03.140427
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:09:03.482821
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:09:03.666476
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 13:09:03.919870
+
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:09:04.185513
+
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:09:04.393747
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:09:04.607178
+
+[41] Log opened at 2024-04-01 13:09:04.659682
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:09:05.654736
+
+[54] Log opened at 2024-04-01 13:09:55.157627
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-04-01 13:09:59.555895
+
+[52] Log opened at 2024-04-01 13:09:59.737456
+[54] Log opened at 2024-04-01 13:09:59.737396
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[43] Log opened at 2024-04-01 13:09:59.737861
+[56] Log opened at 2024-04-01 13:09:59.738017
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[55] Log opened at 2024-04-01 13:09:59.738379
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[53] Log opened at 2024-04-01 13:09:59.738675
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[56] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:10:00.483530
+
+[43] Log opened at 2024-04-01 13:10:00.492341
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-04-01 13:10:00.837809
+
+[54] Log opened at 2024-04-01 13:10:00.847020
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:10:01.015399
+
+[52] Log opened at 2024-04-01 13:10:01.024067
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:10:01.223198
+
+[53] Log opened at 2024-04-01 13:10:01.233738
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:10:01.462814
+
+[55] Log opened at 2024-04-01 13:10:01.469813
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[56] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[56] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-04-01 13:10:01.708204
+
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:10:01.796541
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:10:01.876128
+
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-04-01 13:10:02.137511
+
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:10:02.401072
+
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:10:02.614966
+
+[53] Log opened at 2024-04-01 13:10:02.652002
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log opened at 2024-04-01 13:10:02.704504
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log opened at 2024-04-01 13:10:02.712224
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[56] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log opened at 2024-04-01 13:10:02.803007
+[52] Log opened at 2024-04-01 13:10:02.803182
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:10:03.491615
+
+[56] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[56] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[56] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-04-01 13:10:03.583305
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:10:03.909905
+
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:10:04.283456
+
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:10:04.647523
+
+[53] Log opened at 2024-04-01 13:10:07.775242
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log opened at 2024-04-01 13:10:08.950729
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:10:09.309659
+
+[53] Log opened at 2024-04-01 13:10:09.353667
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:10:09.881135
+
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:10:13.147040
+
+[53] Log opened at 2024-04-01 13:10:13.310913
+[33] Log opened at 2024-04-01 13:10:13.310960
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[51] Log opened at 2024-04-01 13:10:13.311443
+[57] Log opened at 2024-04-01 13:10:13.311503
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[41] Log opened at 2024-04-01 13:10:13.312336
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[49] Log opened at 2024-04-01 13:10:13.312686
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:10:14.033349
+
+[51] Log opened at 2024-04-01 13:10:14.042438
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:10:14.200523
+
+[49] Log opened at 2024-04-01 13:10:14.208993
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:10:14.586527
+
+[53] Log opened at 2024-04-01 13:10:14.596783
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 13:10:14.769392
+
+[33] Log opened at 2024-04-01 13:10:14.779928
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:10:15.027688
+
+[41] Log opened at 2024-04-01 13:10:15.034760
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-04-01 13:10:15.291678
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:10:15.366877
+
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:10:15.499830
+
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:10:15.761074
+
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:10:15.979254
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 13:10:16.186303
+
+[53] Log opened at 2024-04-01 13:10:16.219910
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log opened at 2024-04-01 13:10:16.271315
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log opened at 2024-04-01 13:10:16.280650
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log opened at 2024-04-01 13:10:16.360478
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[33] Log opened at 2024-04-01 13:10:16.362249
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:10:16.992907
+
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:10:17.070610
+
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-04-01 13:10:17.445562
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 13:10:17.823877
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:10:18.197851
+
+[43] Log opened at 2024-04-01 13:19:25.473339
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:19:27.147601
+
+[43] Log opened at 2024-04-01 13:19:27.223760
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:19:31.502023
+
+[52] Log opened at 2024-04-01 13:19:31.678894
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[53] Log opened at 2024-04-01 13:19:31.678911
+[51] Log opened at 2024-04-01 13:19:31.679290
+[43] Log opened at 2024-04-01 13:19:31.679212
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[55] Log opened at 2024-04-01 13:19:31.679186
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] Log opened at 2024-04-01 13:19:31.681773
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:19:32.612708
+
+[43] Log opened at 2024-04-01 13:19:32.622148
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:19:32.940128
+
+[49] Log opened at 2024-04-01 13:19:32.949620
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:19:33.186013
+
+[51] Log opened at 2024-04-01 13:19:33.195627
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:19:33.450758
+
+[52] Log opened at 2024-04-01 13:19:33.460588
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:19:33.694210
+
+[55] Log opened at 2024-04-01 13:19:33.701143
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:19:33.936233
+
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:19:34.032051
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:19:34.104993
+
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:19:34.440217
+
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:19:34.720046
+
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:19:34.940638
+
+[51] Log opened at 2024-04-01 13:19:34.984176
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log opened at 2024-04-01 13:19:35.056967
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log opened at 2024-04-01 13:19:35.065504
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log opened at 2024-04-01 13:19:35.157940
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] Log opened at 2024-04-01 13:19:35.162006
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:19:35.985032
+
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-04-01 13:19:36.104976
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:19:36.435473
+
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:19:36.881748
+
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:19:37.361678
+
+[57] Log opened at 2024-04-01 13:20:20.835752
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-04-01 13:20:25.750398
+
+[57] Log opened at 2024-04-01 13:20:25.897039
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log opened at 2024-04-01 13:20:25.911273
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[33] Log opened at 2024-04-01 13:20:25.911608
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[53] Log opened at 2024-04-01 13:20:25.912933
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[51] Log opened at 2024-04-01 13:20:25.913236
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[58] Log opened at 2024-04-01 13:20:25.913773
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[58] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[58] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-04-01 13:20:26.190305
+
+[57] Log opened at 2024-04-01 13:20:26.206108
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:20:26.686089
+
+[53] Log opened at 2024-04-01 13:20:26.696813
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 13:20:27.255651
+
+[33] Log opened at 2024-04-01 13:20:27.264292
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:20:27.522982
+
+[51] Log opened at 2024-04-01 13:20:27.532670
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:20:27.769281
+
+[41] Log opened at 2024-04-01 13:20:27.779418
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-04-01 13:20:27.938914
+
+[58] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[58] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[58] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-04-01 13:20:28.188498
+
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:20:28.388881
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 13:20:28.640089
+
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:20:28.873537
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:20:29.089653
+
+[51] Log opened at 2024-04-01 13:20:29.131400
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log opened at 2024-04-01 13:20:29.201290
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log opened at 2024-04-01 13:20:29.207045
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log opened at 2024-04-01 13:20:29.283196
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] Log opened at 2024-04-01 13:20:29.285836
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:20:29.969908
+
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 13:20:30.056030
+
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-04-01 13:20:30.423206
+
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 13:20:30.788275
+
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-04-01 13:20:31.121263
+
+[51] Log opened at 2024-04-01 13:20:33.511584
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:20:35.027168
+
+[51] Log opened at 2024-04-01 13:20:35.091485
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:20:39.543448
+
+[51] Log opened at 2024-04-01 13:20:39.674049
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] Log opened at 2024-04-01 13:20:39.679690
+[58] Log opened at 2024-04-01 13:20:39.679701
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[55] Log opened at 2024-04-01 13:20:39.679743
+[59] Log opened at 2024-04-01 13:20:39.679905
+[43] Log opened at 2024-04-01 13:20:39.679676
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[59] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[58] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[59] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:20:39.948321
+
+[51] Log opened at 2024-04-01 13:20:39.959615
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:20:40.840008
+
+[55] Log opened at 2024-04-01 13:20:40.847986
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[58] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[58] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-04-01 13:20:41.011800
+
+[58] Log opened at 2024-04-01 13:20:41.020921
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[58] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:20:41.177602
+
+[43] Log opened at 2024-04-01 13:20:41.191047
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:20:41.376586
+
+[49] Log opened at 2024-04-01 13:20:41.387336
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:20:41.552188
+
+[59] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[59] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[59] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-04-01 13:20:41.791519
+
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:20:41.973626
+
+[58] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[58] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[58] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-04-01 13:20:42.193592
+
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-04-01 13:20:42.409015
+
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:20:42.623609
+
+[51] Log opened at 2024-04-01 13:20:42.748958
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log opened at 2024-04-01 13:20:42.859090
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] Log opened at 2024-04-01 13:20:42.862046
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[58] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log opened at 2024-04-01 13:20:42.974828
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log opened at 2024-04-01 13:20:42.979651
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[59] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-04-01 13:20:43.637103
+
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-04-01 13:20:43.757044
+
+[58] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[58] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[58] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-04-01 13:20:44.138374
+
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-04-01 13:20:44.467576
+
+[59] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[59] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[59] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-04-01 13:20:44.871771
+
+[53] Log opened at 2024-04-01 13:22:31.113059
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 5 -n max_children -v 100
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php -n 389
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1746
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/viewCosidotapablandaForm.php -n 307
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 9
+[53] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stack_get -i 10
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 11 -- JHByZXN1cHVlc3RvRW50aXR5LT5pc19kdXBsaWNhZG8=
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_names -i 12 -d 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[53] [Step Debug] ->
+
+[22] Log opened at 2024-04-01 14:49:01.041947
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-04-01 14:49:01.526238
+
+[22] Log opened at 2024-04-01 14:49:01.559461
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-04-01 14:49:02.039947
+
+[23] Log opened at 2024-04-01 14:49:02.217527
+[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-04-01 14:49:02.469725
+
+[24] Log opened at 2024-04-01 14:49:02.761538
+[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-04-01 14:49:03.179501
+
+[24] Log opened at 2024-04-01 14:49:03.776946
+[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-04-01 14:49:04.290192
+
+[24] Log opened at 2024-04-01 14:49:04.308264
+[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-04-01 14:49:04.828605
+
+[24] Log opened at 2024-04-01 14:49:04.983755
+[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-04-01 14:49:05.221644
+
+[22] Log opened at 2024-04-01 14:49:05.224601
+[24] Log opened at 2024-04-01 14:49:05.224612
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[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'.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] Log opened at 2024-04-01 14:49:05.224887
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[26] Log opened at 2024-04-01 14:49:05.224945
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[22] [Step 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.
+[23] Log opened at 2024-04-01 14:49:05.225465
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[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.
+[23] [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'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[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.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log opened at 2024-04-01 14:49:05.492734
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[27] [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.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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.
+[27] Log closed at 2024-04-01 14:49:05.666183
+
+[27] Log opened at 2024-04-01 14:49:05.674873
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [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.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] Log closed at 2024-04-01 14:49:05.839380
+
+[23] Log opened at 2024-04-01 14:49:05.853018
+[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] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [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.
+[28] [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).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] Log closed at 2024-04-01 14:49:05.898527
+
+[28] Log closed at 2024-04-01 14:49:05.905832
+
+[22] Log opened at 2024-04-01 14:49:05.908325
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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-04-01 14:49:05.956077
+
+[24] Log opened at 2024-04-01 14:49:05.973291
+[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.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 14:49:06.039714
+
+[26] Log opened at 2024-04-01 14:49:06.058996
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-04-01 14:49:06.303018
+
+[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-04-01 14:49:06.476450
+
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-04-01 14:49:06.645953
+
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (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-04-01 14:49:06.811441
+
+[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 14:49:06.984823
+
+[25] Log opened at 2024-04-01 14:49:12.105963
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-04-01 14:49:13.528687
+
+[25] Log opened at 2024-04-01 14:49:13.729108
+[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.
+[30] Log opened at 2024-04-01 14:49:13.742758
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[28] Log opened at 2024-04-01 14:49:13.743506
+[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'.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[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.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] Log opened at 2024-04-01 14:49:13.744132
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] Log opened at 2024-04-01 14:49:13.744967
+[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'.
+[33] Log opened at 2024-04-01 14:49:13.745405
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-04-01 14:49:13.967141
+
+[25] Log opened at 2024-04-01 14:49:13.969570
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 14:49:14.164570
+
+[31] Log opened at 2024-04-01 14:49:14.166568
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 14:49:14.255945
+
+[33] Log opened at 2024-04-01 14:49:14.258695
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:49:14.340832
+
+[28] Log opened at 2024-04-01 14:49:14.343008
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-04-01 14:49:14.429542
+
+[32] Log opened at 2024-04-01 14:49:14.432263
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:49:14.551844
+
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:49:14.641204
+
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 14:49:14.731784
+
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 14:49:14.817969
+
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:49:14.906054
+
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-04-01 14:49:14.994011
+
+[30] Log opened at 2024-04-01 14:49:15.098887
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log opened at 2024-04-01 14:49:15.215568
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] Log opened at 2024-04-01 14:49:15.260821
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:49:15.521203
+
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 14:49:15.680357
+
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 14:49:15.768634
+
+[23] Log opened at 2024-04-01 14:49:29.508672
+[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-04-01 14:49:30.081885
+
+[23] Log opened at 2024-04-01 14:49:30.269825
+[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-04-01 14:49:30.515278
+
+[28] Log opened at 2024-04-01 14:49:30.774905
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] Log opened at 2024-04-01 14:49:31.019768
+[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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:49:31.134188
+
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (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-04-01 14:49:31.437786
+
+[30] Log opened at 2024-04-01 14:49:50.567977
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:49:52.189610
+
+[30] Log opened at 2024-04-01 14:49:52.348149
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] Log opened at 2024-04-01 14:49:52.369402
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[31] Log opened at 2024-04-01 14:49:52.369432
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-04-01 14:49:52.371323
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[26] Log opened at 2024-04-01 14:49:52.371544
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[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'.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[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] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-04-01 14:49:52.372086
+[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.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:49:52.614563
+
+[30] Log opened at 2024-04-01 14:49:52.619917
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 14:49:52.879133
+
+[31] Log opened at 2024-04-01 14:49:52.881401
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 14:49:52.969729
+
+[26] Log opened at 2024-04-01 14:49:52.971644
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] 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-04-01 14:49:53.055688
+
+[25] Log opened at 2024-04-01 14:49:53.058190
+[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.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 14:49:53.188642
+
+[33] Log opened at 2024-04-01 14:49:53.191333
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:49:53.278487
+
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:49:53.369776
+
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 14:49:53.458899
+
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 14:49:53.546422
+
+[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.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] Log closed at 2024-04-01 14:49:53.644838
+
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 14:49:53.705888
+
+[26] Log opened at 2024-04-01 14:49:53.786826
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log opened at 2024-04-01 14:49:53.933300
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-04-01 14:49:53.961919
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[34] Log opened at 2024-04-01 14:49:54.162371
+[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.
+[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-04-01 14:49:54.322767
+
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 14:49:54.500683
+
+[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.
+[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] 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-04-01 14:49:54.632633
+
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-04-01 14:49:54.751748
+
+[23] Log opened at 2024-04-01 14:50:12.329935
+[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-04-01 14:50:12.820651
+
+[23] Log opened at 2024-04-01 14:50:12.885559
+[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-04-01 14:50:14.374917
+
+[23] Log opened at 2024-04-01 14:50:14.563314
+[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.
+[28] Log opened at 2024-04-01 14:50:14.578507
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] Log opened at 2024-04-01 14:50:14.580803
+[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.
+[24] Log opened at 2024-04-01 14:50:14.580429
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] Log opened at 2024-04-01 14:50:14.581197
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[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.
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] Log opened at 2024-04-01 14:50:14.581562
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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-04-01 14:50:14.820600
+
+[23] Log opened at 2024-04-01 14:50:14.823461
+[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).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (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-04-01 14:50:15.010069
+
+[24] Log opened at 2024-04-01 14:50:15.012188
+[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.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:50:15.134968
+
+[28] Log opened at 2024-04-01 14:50:15.136824
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:50:15.225063
+
+[30] Log opened at 2024-04-01 14:50:15.226656
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-04-01 14:50:15.317083
+
+[35] Log opened at 2024-04-01 14:50:15.319260
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging 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.
+[33] Log closed at 2024-04-01 14:50:15.412046
+
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [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-04-01 14:50:15.467831
+
+[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.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:15.563536
+
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:50:15.653880
+
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:50:15.744421
+
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-04-01 14:50:15.837927
+
+[33] Log opened at 2024-04-01 14:50:15.890012
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-04-01 14:50:16.018188
+[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.
+[30] Log opened at 2024-04-01 14:50:16.043703
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] Log opened at 2024-04-01 14:50:16.199189
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] Log closed at 2024-04-01 14:50:16.354518
+
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (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-04-01 14:50:16.475539
+
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:50:16.614280
+
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-04-01 14:50:16.703406
+
+[31] Log opened at 2024-04-01 14:50:34.182590
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-04-01 14:50:34.187802
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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.
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-04-01 14:50:34.640749
+
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 14:50:34.730940
+
+[25] Log opened at 2024-04-01 14:50:34.764490
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] Log opened at 2024-04-01 14:50:34.764770
+[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.
+[34] Log opened at 2024-04-01 14:50:34.765273
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 14:50:35.200079
+
+[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-04-01 14:50:35.298527
+
+[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-04-01 14:50:35.395900
+
+[36] Log opened at 2024-04-01 14:50:44.954550
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] Log opened at 2024-04-01 14:50:44.957886
+[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.
+[28] Log opened at 2024-04-01 14:50:44.960970
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] Log opened at 2024-04-01 14:50:44.965227
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:45.391372
+
+[23] Log opened at 2024-04-01 14:50:45.415130
+[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-04-01 14:50:45.417049
+[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.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[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).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 14:50:45.481408
+
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:50:45.607310
+
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] Log opened at 2024-04-01 14:50:45.737126
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[28] Log opened at 2024-04-01 14:50:45.737046
+[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'.
+[33] [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.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log opened at 2024-04-01 14:50:45.738137
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] Log closed at 2024-04-01 14:50:45.739600
+
+[30] [Step 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).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [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.
+[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-04-01 14:50:45.861020
+
+[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-04-01 14:50:45.951340
+
+[23] Log opened at 2024-04-01 14:50:45.970961
+[36] Log opened at 2024-04-01 14:50:45.971009
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[24] Log opened at 2024-04-01 14:50:45.970852
+[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'.
+[36] [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'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [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 '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [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).
+[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).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] Log closed at 2024-04-01 14:50:46.230926
+
+[33] Log opened at 2024-04-01 14:50:46.233196
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:50:46.292811
+
+[30] Log opened at 2024-04-01 14:50:46.294875
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:50:46.382067
+
+[28] Log opened at 2024-04-01 14:50:46.383407
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:46.474732
+
+[24] Log opened at 2024-04-01 14:50:46.476110
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:50:46.567548
+
+[36] Log opened at 2024-04-01 14:50:46.569163
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:46.663030
+
+[23] Log opened at 2024-04-01 14:50:46.664636
+[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.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[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'.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[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.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] Log closed at 2024-04-01 14:50:46.757499
+
+[33] Log opened at 2024-04-01 14:50:46.767872
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:50:46.879100
+
+[30] Log opened at 2024-04-01 14:50:46.880746
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:50:46.971653
+
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] Log opened at 2024-04-01 14:50:47.002779
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:47.123257
+
+[24] Log opened at 2024-04-01 14:50:47.125451
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:50:47.210634
+
+[36] Log opened at 2024-04-01 14:50:47.212384
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:47.332832
+
+[23] Log opened at 2024-04-01 14:50:47.335135
+[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.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 14:50:47.423721
+
+[33] Log opened at 2024-04-01 14:50:47.426014
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:50:47.550295
+
+[30] Log opened at 2024-04-01 14:50:47.551928
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:50:47.639332
+
+[28] Log opened at 2024-04-01 14:50:47.641096
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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-04-01 14:50:47.729221
+
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] Log opened at 2024-04-01 14:50:47.731144
+[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).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:50:47.855498
+
+[36] Log opened at 2024-04-01 14:50:47.857391
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:47.951605
+
+[23] Log opened at 2024-04-01 14:50:47.953234
+[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.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 14:50:48.043703
+
+[33] Log opened at 2024-04-01 14:50:48.045290
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:50:48.134741
+
+[30] Log opened at 2024-04-01 14:50:48.136125
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:50:48.227080
+
+[28] Log opened at 2024-04-01 14:50:48.228460
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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-04-01 14:50:48.319782
+
+[24] Log opened at 2024-04-01 14:50:48.321275
+[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.
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:50:48.444636
+
+[36] Log opened at 2024-04-01 14:50:48.446638
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:48.533571
+
+[23] Log opened at 2024-04-01 14:50:48.535050
+[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.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 14:50:48.625630
+
+[33] Log opened at 2024-04-01 14:50:48.627424
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:50:48.715860
+
+[30] Log opened at 2024-04-01 14:50:48.717673
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:50:54.099009
+
+[28] Log opened at 2024-04-01 14:50:54.100803
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:54.187953
+
+[24] Log opened at 2024-04-01 14:50:54.190226
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:50:54.277532
+
+[36] Log opened at 2024-04-01 14:50:54.278946
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:54.373637
+
+[23] Log opened at 2024-04-01 14:50:54.375084
+[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.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 14:50:54.463891
+
+[33] Log opened at 2024-04-01 14:50:54.466311
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:50:54.553452
+
+[30] Log opened at 2024-04-01 14:50:54.554974
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:50:54.648272
+
+[28] Log opened at 2024-04-01 14:50:54.649857
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:54.739944
+
+[24] Log opened at 2024-04-01 14:50:54.741631
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:50:54.833091
+
+[36] Log opened at 2024-04-01 14:50:54.834523
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:54.923495
+
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 14:50:55.013363
+
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:50:55.103651
+
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:50:55.196332
+
+[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.
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:55.290385
+
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:50:55.381923
+
+[36] Log opened at 2024-04-01 14:50:56.323839
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] Log opened at 2024-04-01 14:50:56.365413
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[24] Log opened at 2024-04-01 14:50:56.365413
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[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.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] Log opened at 2024-04-01 14:50:56.366044
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:50:56.789998
+
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] Log opened at 2024-04-01 14:50:56.854747
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:50:56.882592
+
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [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-04-01 14:50:56.975824
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[30] Log opened at 2024-04-01 14:50:56.975756
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[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.
+[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.
+[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.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] Log opened at 2024-04-01 14:50:56.976248
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:50:56.980609
+
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. 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-04-01 14:50:57.070600
+
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:50:57.301608
+
+[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.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:57.391170
+
+[36] Log opened at 2024-04-01 14:50:57.404796
+[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.
+[28] Log opened at 2024-04-01 14:50:57.404955
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[24] Log opened at 2024-04-01 14:50:57.404762
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [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.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 14:50:57.481473
+
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-04-01 14:50:57.577396
+
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (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.
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:50:57.821832
+
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:50:57.916199
+
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:50:58.009467
+
+[31] Log opened at 2024-04-01 14:51:11.276728
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-04-01 14:51:11.278325
+[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.
+[25] Log opened at 2024-04-01 14:51:11.281228
+[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.
+[23] Log opened at 2024-04-01 14:51:11.283160
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[37] Log opened at 2024-04-01 14:51:11.283569
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] Log opened at 2024-04-01 14:51:11.283985
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 14:51:11.709447
+
+[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-04-01 14:51:11.801213
+
+[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.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [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-04-01 14:51:11.892157
+
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-04-01 14:51:11.983170
+
+[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).
+[31] Log opened at 2024-04-01 14:51:12.013630
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[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.
+[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.
+[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.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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-04-01 14:51:12.083591
+
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 14:51:12.173817
+
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 14:51:12.457507
+
+[24] Log opened at 2024-04-01 14:54:23.540129
+[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-04-01 14:54:25.038258
+
+[24] Log opened at 2024-04-01 14:54:25.383852
+[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.
+[36] Log opened at 2024-04-01 14:54:25.384612
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] Log opened at 2024-04-01 14:54:25.384956
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[25] Log opened at 2024-04-01 14:54:25.385769
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[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] Log opened at 2024-04-01 14:54:25.385527
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[28] [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] 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.
+[38] Log opened at 2024-04-01 14:54:25.386693
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [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).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:54:25.848911
+
+[36] Log opened at 2024-04-01 14:54:25.850904
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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-04-01 14:54:25.947536
+
+[34] Log opened at 2024-04-01 14:54:25.949509
+[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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:54:26.029204
+
+[28] Log opened at 2024-04-01 14:54:26.031462
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-04-01 14:54:26.155408
+
+[24] Log opened at 2024-04-01 14:54:26.157622
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-04-01 14:54:26.241572
+
+[25] Log opened at 2024-04-01 14:54:26.243152
+[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.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 14:54:26.332316
+
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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] 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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:54:26.424497
+
+[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] 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-04-01 14:54:26.451715
+
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:54:26.509540
+
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Could not connect to debugging client. 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.
+[28] Log closed at 2024-04-01 14:54:26.599851
+
+[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-04-01 14:54:26.663740
+
+[34] Log opened at 2024-04-01 14:54:27.547772
+[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.
+[36] Log opened at 2024-04-01 14:54:27.589611
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[38] Log opened at 2024-04-01 14:54:27.589806
+[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'.
+[36] [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'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[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.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: 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).
+[28] Log opened at 2024-04-01 14:54:27.626837
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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.
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:54:28.046251
+
+[34] Log closed at 2024-04-01 14:54:28.049942
+
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 14:54:28.181076
+
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 14:54:28.327937
+
+[37] Log opened at 2024-04-01 14:59:52.391690
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 14:59:53.832930
+
+[37] Log opened at 2024-04-01 14:59:54.099855
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] Log opened at 2024-04-01 14:59:54.103750
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[25] Log opened at 2024-04-01 14:59:54.104105
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] Log opened at 2024-04-01 14:59:54.104457
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[36] Log opened at 2024-04-01 14:59:54.104651
+[39] Log opened at 2024-04-01 14:59:54.104436
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [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.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 14:59:54.358074
+
+[37] Log opened at 2024-04-01 14:59:54.361162
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (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.
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:59:54.552701
+
+[24] Log opened at 2024-04-01 14:59:54.555231
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:59:54.646060
+
+[36] Log opened at 2024-04-01 14:59:54.648158
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:59:54.738051
+
+[25] Log opened at 2024-04-01 14:59:54.740601
+[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.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 14:59:54.827089
+
+[39] Log opened at 2024-04-01 14:59:54.830179
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 14:59:54.955784
+
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 14:59:55.046944
+
+[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.
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:59:55.139207
+
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 14:59:55.230871
+
+[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.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 14:59:55.324515
+
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 14:59:55.415347
+
+[36] Log opened at 2024-04-01 14:59:56.282883
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-04-01 14:59:56.287043
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[24] Log opened at 2024-04-01 14:59:56.287143
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[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] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[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: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] Log opened at 2024-04-01 14:59:56.287909
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [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).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-04-01 14:59:56.787113
+
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 14:59:56.879317
+
+[36] Log closed at 2024-04-01 14:59:56.884780
+
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (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-04-01 14:59:57.025571
+
+[28] Log opened at 2024-04-01 15:01:15.469255
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 15:01:16.962782
+
+[28] Log opened at 2024-04-01 15:01:17.204908
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] Log opened at 2024-04-01 15:01:17.208446
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] Log opened at 2024-04-01 15:01:17.209052
+[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.
+[37] Log opened at 2024-04-01 15:01:17.209980
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] Log opened at 2024-04-01 15:01:17.210897
+[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.
+[40] Log opened at 2024-04-01 15:01:17.210932
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [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.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 15:01:17.443412
+
+[28] Log opened at 2024-04-01 15:01:17.445955
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:01:17.728491
+
+[38] Log opened at 2024-04-01 15:01:17.730462
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 15:01:17.821902
+
+[23] Log opened at 2024-04-01 15:01:17.824279
+[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.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:01:17.913258
+
+[40] Log opened at 2024-04-01 15:01:17.916171
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 15:01:18.002695
+
+[37] Log opened at 2024-04-01 15:01:18.004609
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:01:18.101378
+
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 15:01:18.190002
+
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:01:18.283123
+
+[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.
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 15:01:18.373897
+
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:01:18.466564
+
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 15:01:18.557414
+
+[39] Log opened at 2024-04-01 15:01:19.189021
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] Log opened at 2024-04-01 15:01:19.201830
+[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.
+[37] Log opened at 2024-04-01 15:01:19.202308
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] Log opened at 2024-04-01 15:01:19.235280
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-04-01 15:01:19.630483
+
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] Log closed at 2024-04-01 15:01:19.664915
+
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:01:19.768744
+
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:01:19.859956
+
+[31] Log opened at 2024-04-01 15:02:00.571025
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 15:02:02.039837
+
+[31] Log opened at 2024-04-01 15:02:02.264289
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] Log opened at 2024-04-01 15:02:02.270126
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] Log opened at 2024-04-01 15:02:02.270285
+[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.
+[28] Log opened at 2024-04-01 15:02:02.271537
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] Log opened at 2024-04-01 15:02:02.272029
+[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.
+[41] Log opened at 2024-04-01 15:02:02.272320
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 15:02:02.525708
+
+[31] Log opened at 2024-04-01 15:02:02.528682
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 15:02:02.694860
+
+[23] Log opened at 2024-04-01 15:02:02.696671
+[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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 15:02:02.782590
+
+[28] Log opened at 2024-04-01 15:02:02.784753
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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-04-01 15:02:02.878703
+
+[24] Log opened at 2024-04-01 15:02:02.881197
+[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.
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 15:02:03.012908
+
+[36] Log opened at 2024-04-01 15:02:03.015520
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 15:02:03.103351
+
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[31] [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).
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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.
+[31] Log closed at 2024-04-01 15:02:03.204130
+
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 15:02:03.265585
+
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 15:02:03.357039
+
+[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.
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] Log closed at 2024-04-01 15:02:03.451012
+
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 15:02:03.512772
+
+[23] Log opened at 2024-04-01 15:02:04.165245
+[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.
+[41] Log opened at 2024-04-01 15:02:04.185081
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[28] Log opened at 2024-04-01 15:02:04.185108
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[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] [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.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] Log opened at 2024-04-01 15:02:04.207235
+[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] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] 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).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-04-01 15:02:04.640492
+
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] Log closed at 2024-04-01 15:02:04.703321
+
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 15:02:04.761959
+
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 15:02:04.895325
+
+[39] Log opened at 2024-04-01 15:02:32.588108
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:02:34.097817
+
+[39] Log opened at 2024-04-01 15:02:34.436552
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] Log opened at 2024-04-01 15:02:34.449486
+[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.
+[40] Log opened at 2024-04-01 15:02:34.449769
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] Log opened at 2024-04-01 15:02:34.451995
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[24] Log opened at 2024-04-01 15:02:34.452238
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] Log opened at 2024-04-01 15:02:34.452238
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:02:34.712296
+
+[39] Log opened at 2024-04-01 15:02:34.715609
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:02:34.878206
+
+[40] Log opened at 2024-04-01 15:02:34.880250
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 15:02:34.973036
+
+[31] Log opened at 2024-04-01 15:02:34.974795
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-04-01 15:02:35.070746
+
+[42] Log opened at 2024-04-01 15:02:35.073713
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. 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.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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-04-01 15:02:35.170216
+
+[24] Log opened at 2024-04-01 15:02:35.172854
+[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.
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] Log closed at 2024-04-01 15:02:35.332213
+
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] Log closed at 2024-04-01 15:02:35.394944
+
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:02:35.462827
+
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 15:02:35.557465
+
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (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).
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] Log closed at 2024-04-01 15:02:35.651840
+
+[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-04-01 15:02:35.722269
+
+[24] Log opened at 2024-04-01 15:02:35.924520
+[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).
+[40] Log opened at 2024-04-01 15:02:36.001417
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] Log opened at 2024-04-01 15:02:36.007766
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] Log opened at 2024-04-01 15:02:36.145693
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (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.
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] Log closed at 2024-04-01 15:02:36.385222
+
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-04-01 15:02:36.419240
+
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:02:36.516956
+
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-04-01 15:02:36.609477
+
+[41] Log opened at 2024-04-01 15:04:49.606574
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 15:04:51.108274
+
+[41] Log opened at 2024-04-01 15:04:51.377111
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] Log opened at 2024-04-01 15:04:51.383319
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[28] Log opened at 2024-04-01 15:04:51.382947
+[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'.
+[38] [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.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] Log opened at 2024-04-01 15:04:51.383719
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[24] Log opened at 2024-04-01 15:04:51.384304
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[43] Log opened at 2024-04-01 15:04:51.384157
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (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] 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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 15:04:51.706587
+
+[41] Log opened at 2024-04-01 15:04:51.708816
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 15:04:51.834507
+
+[24] Log opened at 2024-04-01 15:04:51.836556
+[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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 15:04:51.922319
+
+[28] Log opened at 2024-04-01 15:04:51.924304
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:04:52.017696
+
+[39] Log opened at 2024-04-01 15:04:52.019602
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 15:04:52.108357
+
+[43] Log opened at 2024-04-01 15:04:52.110960
+[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.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:04:52.215872
+
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (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.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] Log closed at 2024-04-01 15:04:52.311251
+
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 15:04:52.374283
+
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 15:04:52.465834
+
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:04:52.557566
+
+[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-04-01 15:04:52.649663
+
+[24] Log opened at 2024-04-01 15:04:52.858878
+[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).
+[39] Log opened at 2024-04-01 15:04:53.003502
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] Log opened at 2024-04-01 15:04:53.028608
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] Log opened at 2024-04-01 15:04:53.188383
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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-04-01 15:04:53.345664
+
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:04:53.488736
+
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:04:53.627514
+
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 15:04:53.722627
+
+[40] Log opened at 2024-04-01 15:09:56.077078
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:09:57.559899
+
+[40] Log opened at 2024-04-01 15:09:57.802558
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] Log opened at 2024-04-01 15:09:57.807628
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[41] Log opened at 2024-04-01 15:09:57.807957
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[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] Log opened at 2024-04-01 15:09:57.807628
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[43] Log opened at 2024-04-01 15:09:57.808334
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[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.
+[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.
+[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.
+[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.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] Log opened at 2024-04-01 15:09:57.808762
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:09:58.066861
+
+[40] Log opened at 2024-04-01 15:09:58.069952
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 15:09:58.229097
+
+[41] Log opened at 2024-04-01 15:09:58.230787
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-04-01 15:09:58.355694
+
+[42] Log opened at 2024-04-01 15:09:58.357888
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 15:09:58.448050
+
+[44] Log opened at 2024-04-01 15:09:58.450291
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging 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.
+[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-04-01 15:09:58.544404
+
+[43] Log opened at 2024-04-01 15:09:58.546783
+[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.
+[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.
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[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-04-01 15:09:58.631575
+
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:09:58.724668
+
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] Log closed at 2024-04-01 15:09:58.817388
+
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] Log closed at 2024-04-01 15:09:58.878861
+
+[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.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 15:09:58.938774
+
+[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-04-01 15:09:59.029033
+
+[43] Log opened at 2024-04-01 15:09:59.222094
+[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).
+[41] Log opened at 2024-04-01 15:09:59.313318
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] Log opened at 2024-04-01 15:09:59.344790
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] Log opened at 2024-04-01 15:09:59.473016
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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.
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 15:09:59.700017
+
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 15:09:59.766395
+
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 15:09:59.899333
+
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-04-01 15:09:59.992027
+
+[38] Log opened at 2024-04-01 15:10:33.572738
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:10:35.029916
+
+[38] Log opened at 2024-04-01 15:10:35.314838
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] Log opened at 2024-04-01 15:10:35.316885
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[23] Log opened at 2024-04-01 15:10:35.317581
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[28] Log opened at 2024-04-01 15:10:35.317120
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] Log opened at 2024-04-01 15:10:35.317800
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[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.
+[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.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [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'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] Log opened at 2024-04-01 15:10:35.318109
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ERR: Could not connect to debugging 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).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 15:10:35.762418
+
+[28] Log opened at 2024-04-01 15:10:35.764303
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 15:10:35.858319
+
+[23] Log opened at 2024-04-01 15:10:35.860953
+[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.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:10:35.950220
+
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] Log opened at 2024-04-01 15:10:35.952679
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] Log closed at 2024-04-01 15:10:36.083657
+
+[38] Log opened at 2024-04-01 15:10:36.086065
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:10:36.146774
+
+[40] Log opened at 2024-04-01 15:10:36.148320
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] Log closed at 2024-04-01 15:10:36.243666
+
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: 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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] Log closed at 2024-04-01 15:10:36.304829
+
+[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.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:10:36.366408
+
+[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).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] Log closed at 2024-04-01 15:10:36.398777
+
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] Log closed at 2024-04-01 15:10:36.462678
+
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:10:36.523857
+
+[23] Log opened at 2024-04-01 15:10:37.017200
+[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).
+[28] Log opened at 2024-04-01 15:10:37.270367
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] Log opened at 2024-04-01 15:10:37.278939
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] Log opened at 2024-04-01 15:10:37.317118
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging 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.
+[40] [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).
+[40] [Step Debug] ERR: Could not connect to debugging 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-04-01 15:10:37.469211
+
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-04-01 15:10:37.753101
+
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 15:10:37.888329
+
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:10:37.982787
+
+[41] Log opened at 2024-04-01 15:17:32.105750
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 15:17:33.557729
+
+[41] Log opened at 2024-04-01 15:17:33.847730
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] Log opened at 2024-04-01 15:17:33.853455
+[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.
+[46] Log opened at 2024-04-01 15:17:33.854249
+[39] Log opened at 2024-04-01 15:17:33.854411
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] Log opened at 2024-04-01 15:17:33.855047
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] Log opened at 2024-04-01 15:17:33.855654
+[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.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 15:17:34.121387
+
+[41] Log opened at 2024-04-01 15:17:34.124457
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:17:34.296113
+
+[39] Log opened at 2024-04-01 15:17:34.297826
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 15:17:34.399492
+
+[23] Log opened at 2024-04-01 15:17:34.402065
+[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.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:17:34.496701
+
+[38] Log opened at 2024-04-01 15:17:34.498699
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 15:17:34.591738
+
+[46] Log opened at 2024-04-01 15:17:34.594950
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-04-01 15:17:34.722625
+
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] Log closed at 2024-04-01 15:17:34.816931
+
+[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.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:17:34.882215
+
+[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.
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 15:17:34.974062
+
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:17:35.070337
+
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 15:17:35.166027
+
+[23] Log opened at 2024-04-01 15:17:35.291144
+[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).
+[39] Log opened at 2024-04-01 15:17:35.443218
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] Log opened at 2024-04-01 15:17:35.474997
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] Log opened at 2024-04-01 15:17:35.629940
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] Log closed at 2024-04-01 15:17:35.793743
+
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:17:35.900420
+
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:17:36.036378
+
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-04-01 15:17:36.134461
+
+[45] Log opened at 2024-04-01 15:17:47.090718
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 15:17:47.563138
+
+[45] Log opened at 2024-04-01 15:17:47.610421
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 15:17:48.068949
+
+[45] Log opened at 2024-04-01 15:17:48.101860
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 15:17:48.544463
+
+[40] Log opened at 2024-04-01 15:18:30.991929
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:18:31.522083
+
+[44] Log opened at 2024-04-01 15:18:31.590244
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 15:18:31.842798
+
+[44] Log opened at 2024-04-01 15:18:32.331643
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[47] Log opened at 2024-04-01 15:18:32.516985
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 15:18:32.689367
+
+[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 15:18:32.988550
+
+[44] Log opened at 2024-04-01 15:18:35.464609
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 15:18:36.277372
+
+[44] Log opened at 2024-04-01 15:18:36.462871
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 15:18:36.726673
+
+[44] Log opened at 2024-04-01 15:18:37.015001
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[47] Log opened at 2024-04-01 15:18:37.230526
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] Log opened at 2024-04-01 15:18:37.250624
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] Log opened at 2024-04-01 15:18:37.266665
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 15:18:37.388602
+
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 15:18:37.704974
+
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-04-01 15:18:37.805977
+
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 15:18:37.904927
+
+[44] Log opened at 2024-04-01 15:18:40.786723
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 15:18:41.264091
+
+[23] Log opened at 2024-04-01 15:19:02.450151
+[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-04-01 15:19:02.932182
+
+[23] Log opened at 2024-04-01 15:19:03.179589
+[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-04-01 15:19:03.642167
+
+[39] Log opened at 2024-04-01 15:19:09.035064
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:19:10.519725
+
+[39] Log opened at 2024-04-01 15:19:10.810210
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] Log opened at 2024-04-01 15:19:10.811655
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[42] Log opened at 2024-04-01 15:19:10.811981
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[45] Log opened at 2024-04-01 15:19:10.812140
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[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.
+[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'.
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [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.
+[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.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] Log opened at 2024-04-01 15:19:10.812853
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] Log opened at 2024-04-01 15:19:10.813290
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:19:11.294500
+
+[40] Log opened at 2024-04-01 15:19:11.297420
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 15:19:11.387341
+
+[45] Log opened at 2024-04-01 15:19:11.389151
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 15:19:11.482208
+
+[41] Log opened at 2024-04-01 15:19:11.484510
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:19:11.575259
+
+[38] Log opened at 2024-04-01 15:19:11.577179
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:19:11.706657
+
+[39] Log opened at 2024-04-01 15:19:11.708784
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-04-01 15:19:11.801626
+
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:19:11.897191
+
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:19:11.924511
+
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 15:19:11.988418
+
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] Log closed at 2024-04-01 15:19:12.082999
+
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:19:12.148422
+
+[40] Log opened at 2024-04-01 15:19:12.539278
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] Log opened at 2024-04-01 15:19:12.765475
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] Log opened at 2024-04-01 15:19:12.797410
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] Log opened at 2024-04-01 15:19:12.874855
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:19:12.993297
+
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-04-01 15:19:13.272684
+
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 15:19:13.405586
+
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 15:19:13.502900
+
+[46] Log opened at 2024-04-01 15:19:54.032294
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 15:19:54.521102
+
+[46] Log opened at 2024-04-01 15:19:54.583414
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 15:19:55.040933
+
+[44] Log opened at 2024-04-01 15:20:02.946823
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 15:20:04.459136
+
+[44] Log opened at 2024-04-01 15:20:04.714728
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] Log opened at 2024-04-01 15:20:04.716071
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[23] Log opened at 2024-04-01 15:20:04.715710
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[40] Log opened at 2024-04-01 15:20:04.716838
+[38] Log opened at 2024-04-01 15:20:04.716790
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[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'.
+[48] Log opened at 2024-04-01 15:20:04.716767
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[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.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:20:05.168712
+
+[38] Log opened at 2024-04-01 15:20:05.172050
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] Log closed at 2024-04-01 15:20:05.261291
+
+[48] Log opened at 2024-04-01 15:20:05.263397
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 15:20:05.396237
+
+[44] Log opened at 2024-04-01 15:20:05.398569
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 15:20:05.490191
+
+[23] Log opened at 2024-04-01 15:20:05.492347
+[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.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:20:05.584154
+
+[40] Log opened at 2024-04-01 15:20:05.585881
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] Log closed at 2024-04-01 15:20:05.682476
+
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] Log closed at 2024-04-01 15:20:05.747181
+
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:20:05.810195
+
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-04-01 15:20:05.842249
+
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[44] [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.
+[44] [Step Debug] ERR: Could not connect to debugging 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.
+[44] Log closed at 2024-04-01 15:20:05.933683
+
+[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-04-01 15:20:05.998973
+
+[38] Log opened at 2024-04-01 15:20:06.529927
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log opened at 2024-04-01 15:20:06.645695
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] Log opened at 2024-04-01 15:20:06.679997
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log opened at 2024-04-01 15:20:06.736840
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:20:07.017696
+
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-04-01 15:20:07.196019
+
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:20:07.320936
+
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-04-01 15:20:07.449881
+
+[45] Log opened at 2024-04-01 15:20:33.492361
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 15:20:33.983481
+
+[45] Log opened at 2024-04-01 15:20:34.054211
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 15:20:34.511313
+
+[45] Log opened at 2024-04-01 15:20:37.441253
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 15:20:37.928994
+
+[45] Log opened at 2024-04-01 15:20:37.988182
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-04-01 15:20:38.441037
+
+[41] Log opened at 2024-04-01 15:22:02.510657
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 15:22:04.007214
+
+[41] Log opened at 2024-04-01 15:22:04.263651
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] Log opened at 2024-04-01 15:22:04.264707
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] Log opened at 2024-04-01 15:22:04.266476
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[49] Log opened at 2024-04-01 15:22:04.266075
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[39] Log opened at 2024-04-01 15:22:04.265987
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[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'.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] Log opened at 2024-04-01 15:22:04.267017
+[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-04-01 15:22:04.772485
+
+[41] Log opened at 2024-04-01 15:22:04.776048
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 15:22:04.861281
+
+[44] Log opened at 2024-04-01 15:22:04.863443
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:22:04.955498
+
+[39] Log opened at 2024-04-01 15:22:04.957434
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 15:22:05.050235
+
+[46] Log opened at 2024-04-01 15:22:05.052662
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-04-01 15:22:05.143383
+
+[38] Log opened at 2024-04-01 15:22:05.145295
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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.
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[49] Log closed at 2024-04-01 15:22:05.248305
+
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] Log closed at 2024-04-01 15:22:05.313883
+
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] Log closed at 2024-04-01 15:22:05.378529
+
+[44] Log closed at 2024-04-01 15:22:05.379221
+
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:22:05.458300
+
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-04-01 15:22:05.552685
+
+[38] Log opened at 2024-04-01 15:22:06.055842
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log opened at 2024-04-01 15:22:06.158714
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[49] Log opened at 2024-04-01 15:22:06.194194
+[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.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[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).
+[44] Log opened at 2024-04-01 15:22:06.323959
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] Log closed at 2024-04-01 15:22:06.521635
+
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-04-01 15:22:06.637250
+
+[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.
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[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-04-01 15:22:06.783370
+
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument.
+[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-04-01 15:22:06.877957
+